forgot some files

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@104 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-08-04 16:42:37 +00:00
parent 46091a9237
commit 839f99ffbf
8 changed files with 338 additions and 0 deletions

14
polyp/xmalloc.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef foomemoryhfoo
#define foomemoryhfoo
#include <sys/types.h>
void* pa_xmalloc(size_t l);
void *pa_xmalloc0(size_t l);
void *pa_xrealloc(void *ptr, size_t size);
#define pa_xfree free
char *pa_xstrdup(const char *s);
char *pa_xstrndup(const char *s, size_t l);
#endif