mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
forgot some files
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@104 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
46091a9237
commit
839f99ffbf
8 changed files with 338 additions and 0 deletions
14
polyp/xmalloc.h
Normal file
14
polyp/xmalloc.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue