diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-25 20:57:49 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-25 20:57:49 (GMT) |
commit | d1c4bf158203c4e8ec29fdeb83fd311e36320885 (patch) | |
tree | 15874534e282f67505ce4af5ba805a1ff70ec43e /funtools/util/xalloc.h | |
parent | e19a18e035dc4d0e8e215f9b452bb9ef6f58b9d7 (diff) | |
parent | 339420dd5dd874c41f6bab5808291fb4036dd022 (diff) | |
download | blt-d1c4bf158203c4e8ec29fdeb83fd311e36320885.zip blt-d1c4bf158203c4e8ec29fdeb83fd311e36320885.tar.gz blt-d1c4bf158203c4e8ec29fdeb83fd311e36320885.tar.bz2 |
Merge commit '339420dd5dd874c41f6bab5808291fb4036dd022' as 'funtools'
Diffstat (limited to 'funtools/util/xalloc.h')
-rw-r--r-- | funtools/util/xalloc.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/funtools/util/xalloc.h b/funtools/util/xalloc.h new file mode 100644 index 0000000..09f74b0 --- /dev/null +++ b/funtools/util/xalloc.h @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2004 Smithsonian Astrophysical Observatory + */ + +/* + * + * xalloc.h -- declarations for safe (error-checked) memory allocation + * + */ + +#ifndef __xalloc_h +#define __xalloc_h + +#if HAVE_CONFIG_H +#include "conf.h" +#endif + +#include <sys/types.h> +#if HAVE_STRING_H +#include <string.h> +#endif +#if HAVE_MALLOC_H +#include <malloc.h> +#endif +#if HAVE_STDLIB_H +#include <stdlib.h> +#endif +#if HAVE_UNISTD_H +#include <unistd.h> +#endif +#ifdef HAVE_SETJMP_H +#define XALLOC_SETJMP 142857 +#include <setjmp.h> +#endif + +#include "prsetup.h" + +_PRbeg + +void *xmalloc _PRx((size_t n)); +void *xcalloc _PRx((size_t n, size_t s)); +void *xrealloc _PRx((void *p, size_t n)); +void xfree _PRx((void *p)); +char *xstrdup _PRx((char *s)); +#if HAVE_SETJMP +void xalloc_savejmp _PRx((jmp_buf *env)); +#endif + +_PRend + +#endif |