9
0
Fork 0
barebox/include/xfuncs.h

12 lines
216 B
C
Raw Normal View History

2007-07-05 16:01:39 +00:00
#ifndef __XFUNCS_H
#define __XFUNCS_H
#include <linux/types.h>
2007-07-05 16:01:39 +00:00
void *xmalloc(size_t size);
void *xrealloc(void *ptr, size_t size);
2007-07-05 16:01:42 +00:00
void *xzalloc(size_t size);
char *xstrdup(const char *s);
2007-07-05 16:01:39 +00:00
#endif /* __XFUNCS_H */