mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
clean up mainloop API git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@105 fefdeb5f-60dc-0310-8127-8f9354f1896f
15 lines
297 B
C
15 lines
297 B
C
#ifndef foomemoryhfoo
|
|
#define foomemoryhfoo
|
|
|
|
#include <sys/types.h>
|
|
#include <stdlib.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
|