File: xmalloc.h

package info (click to toggle)
util-linux 2.12r-19
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 8,928 kB
  • ctags: 5,101
  • sloc: ansic: 46,134; sh: 8,041; makefile: 1,111; perl: 86; csh: 62; sed: 55
file content (8 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
#include <sys/types.h>
#include <stdarg.h>

extern void *xmalloc(size_t size);
extern void *xrealloc(void *p, size_t size);
extern char *xstrdup(const char *s);
extern void die(int err, const char *fmt, ...);
extern void (*at_die)(void);