]> git.decadent.org.uk Git - nfs-utils.git/blob - support/include/xmalloc.h
Initial revision
[nfs-utils.git] / support / include / xmalloc.h
1 /*
2  * xmalloc      Module for memory allocation. Drop in your
3  *              debugging malloc module if you feel like it.
4  *
5  * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>
6  */
7
8 #ifndef XMALLOC_H
9 #define XMALLOC_H
10
11 void    *xmalloc(size_t size);
12 void    *xrealloc(void *ptr, size_t size);
13 char    *xstrdup(const char *s);
14 void    xfree(void *ptr);
15
16 #endif /* XMALLOC_H */