diff options
author | Greg McGary <greg@mcgary.org> | 1997-04-18 06:42:59 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1997-04-18 06:42:59 +0000 |
commit | 40b4b4e4990e67028efb79345fba5fa9e760b522 (patch) | |
tree | 34e9ba556c821f7c7f94b99c0cbcbf0cc321b5af /lib/xmalloc.h | |
parent | 8c13e09279f361e18173f9e237c454af0ab33299 (diff) | |
download | idutils-40b4b4e4990e67028efb79345fba5fa9e760b522.tar.gz idutils-40b4b4e4990e67028efb79345fba5fa9e760b522.tar.bz2 idutils-40b4b4e4990e67028efb79345fba5fa9e760b522.zip |
Initial revision
Diffstat (limited to 'lib/xmalloc.h')
-rw-r--r-- | lib/xmalloc.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/xmalloc.h b/lib/xmalloc.h new file mode 100644 index 0000000..622b31b --- /dev/null +++ b/lib/xmalloc.h @@ -0,0 +1,12 @@ +#ifndef _xmalloc_h_ +#define _xmalloc_h_ 1 + +#include <sys/types.h> + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif +void *xmalloc __P((size_t n)); +void *xrealloc __P((void *p, size_t n)); + +#endif /* _xmalloc_h_ */ |