blob: 3679b508a6ff6209fa1e77fce796309bfbc95a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: xmalloc.c
project: fetchmail
programmer: Carl Harris, ceharris@mal.com
description: malloc wrapper.
***********************************************************************/
#include <config.h>
#include <stdio.h>
#include <sys/types.h>
#include "fetchmail.h"
#if defined(HAVE_VOIDPOINTER)
#define XMALLOCTYPE void
#else
#define XMALLOCTYPE char
#endif
XMALLOCTYPE *
xmalloc (n)
size_t n;
{
XMALLOCTYPE *p;
p = (XMALLOCTYPE *) malloc(n);
if (p == (XMALLOCTYPE *) 0) {
fputs("malloc failed\n",stderr);
exit(PS_UNDEFINED);
}
return(p);
}
|