diff options
| author | Simon Tatham <anakin@pobox.com> | 1999-01-30 21:35:36 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 1999-01-30 21:35:36 +0000 |
| commit | f91811f57de0561cc7c8efb5897a6b62f5c0e0b2 (patch) | |
| tree | 0f942e70bd4936e5806874193d17ba90693cd313 /malloc.c | |
| download | halibut-f91811f57de0561cc7c8efb5897a6b62f5c0e0b2.zip halibut-f91811f57de0561cc7c8efb5897a6b62f5c0e0b2.tar.gz halibut-f91811f57de0561cc7c8efb5897a6b62f5c0e0b2.tar.bz2 halibut-f91811f57de0561cc7c8efb5897a6b62f5c0e0b2.tar.xz | |
Initial checkin of skeleton application. About to start reading files
[originally from svn r22]
Diffstat (limited to 'malloc.c')
| -rw-r--r-- | malloc.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/malloc.c b/malloc.c new file mode 100644 index 0000000..cf0f2e0 --- /dev/null +++ b/malloc.c @@ -0,0 +1,39 @@ +/* + * malloc.c: safe wrappers around malloc, realloc, free, strdup + */ + +#include <stdlib.h> +#include "buttress.h" + +/* + * smalloc should guarantee to return a useful pointer - buttress + * can do nothing except die when it's out of memory anyway + */ +void *smalloc(int size) { + void *p = malloc(size); + if (!p) + fatal(err_nomemory); + return p; +} + +/* + * sfree should guaranteeably deal gracefully with freeing NULL + */ +void sfree(void *p) { + if (p) + free(p); +} + +/* + * srealloc should guaranteeably be able to realloc NULL + */ +void *srealloc(void *p, int size) { + void *q; + if (p) + q = realloc(p, size); + else + q = malloc(size); + if (!q) + fatal(err_nomemory); + return p; +} |