File: xmalloc.h

package info (click to toggle)
autoproject 0.20-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: sh: 2,948; ansic: 1,677; cpp: 199; makefile: 59
file content (6 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (45)
1
2
3
4
5
6
/* Prototypes for functions defined in xmalloc.c  */

VOID *xmalloc (size_t n);
VOID *xcalloc (size_t n, size_t s);
VOID *xrealloc (VOID *p, size_t n);
char *xstrdup (char *p);