File: xmalloc.c

package info (click to toggle)
plotutils 2.0-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,964 kB
  • ctags: 2,522
  • sloc: ansic: 38,416; sh: 1,853; yacc: 856; makefile: 181; lex: 144
file content (63 lines) | stat: -rw-r--r-- 1,068 bytes parent folder | download
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "sys-defines.h"

/* forward references */
Voidptr xmalloc __P((unsigned int length));
Voidptr xrealloc __P((Voidptr p, unsigned int length));
Voidptr xcalloc __P((unsigned int nmemb, unsigned int size));

Voidptr 
#ifdef _HAVE_PROTOS
xmalloc (unsigned int length)
#else
xmalloc (length)
     unsigned int length;
#endif
{
  Voidptr p;
  p = (Voidptr) malloc (length);

  if (p == (Voidptr) NULL)
    {
      perror ("malloc failed");
      exit (1);
    }
  return p;
}

Voidptr 
#ifdef _HAVE_PROTOS
xrealloc (Voidptr p, unsigned int length)
#else
xrealloc (p, length)
     Voidptr p;
     unsigned int length;
#endif
{
  p = (Voidptr) realloc (p, length);

  if (p == (Voidptr) NULL)
    {
      perror ("realloc failed");
      exit (1);
    }
  return p;
}

Voidptr 
#ifdef _HAVE_PROTOS
xcalloc (unsigned int nmemb, unsigned int size)
#else
xcalloc (nmemb, size)
     unsigned int nmemb, size;
#endif
{
  Voidptr p;
  p = (Voidptr) calloc (nmemb, size);

  if (p == (Voidptr) NULL)
    {
      perror ("calloc failed");
      exit (1);
    }
  return p;
}