mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@104 fefdeb5f-60dc-0310-8127-8f9354f1896f
14 lines
277 B
C
14 lines
277 B
C
#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
|