diff options
Diffstat (limited to 'xwrap.h')
| -rw-r--r-- | xwrap.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#ifndef XWRAP_H +#define XWRAP_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include <sys/types.h> + +void *xmalloc(size_t size); +char *xstrdup(const char *s); + +#ifdef __cplusplus +} +#endif + +#endif |
