diff options
| author | mikeos <mike.osipov@gmail.com> | 2012-10-13 23:20:14 +0400 |
|---|---|---|
| committer | mikeos <mike.osipov@gmail.com> | 2012-10-13 23:20:14 +0400 |
| commit | 893c216b889f260378fb21a7f576c061f7ff2248 (patch) | |
| tree | ad4566df268c76de8fc743d006b14baf6bfb6594 /xwrap.h | |
initial
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 |
