Files
findutils/lib/xalloc.h
Kevin Dalley 5771932166 * lib/xstrdup.c, lib/xmalloc.c, lib/xgetcwd.c, lib/xalloc.h,
lib/strtol.c, lib/strstr.c, lib/strftime.c, lib/strdup.c,
lib/stpcpy.c, lib/stat.c, lib/savedir.h, lib/savedir.c,
lib/regex.h, lib/regex.c, lib/realloc.c, lib/pathmax.h,
lib/modechange.h, lib/modechange.c, lib/mktime.c, lib/memset.c,
lib/memcmp.c, lib/malloc.c, lib/lstat.c, lib/idcache.c,
lib/getopt1.c, lib/getopt.c, lib/getopt.h, lib/getline.c,
lib/getline.h, lib/fnmatch.c, lib/fnmatch.h, lib/filemode.c,
lib/filemode.h, lib/fileblocks.c, lib/error.c, lib/error.h,
lib/dirname.c, lib/alloca.c: updated to newer version of file from
fileutils.
2000-01-18 09:50:47 +00:00

22 lines
556 B
C

#ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
#endif
/* Exit value when the requested amount of memory is not available.
The caller may set it to some other value. */
extern int xalloc_exit_failure;
/* FIXME: describe */
extern char *const xalloc_msg_memory_exhausted;
/* FIXME: describe */
extern void (*xalloc_fail_func) ();
void *xmalloc PARAMS ((size_t n));
void *xcalloc PARAMS ((size_t n, size_t s));
void *xrealloc PARAMS ((void *p, size_t n));