9
0
Fork 0
barebox/include/xfuncs.h

10 lines
190 B
C

#ifndef __XFUNCS_H
#define __XFUNCS_H
void *xmalloc(size_t size);
void *xrealloc(void *ptr, size_t size);
void *xzalloc(size_t size);
char *xstrdup(const char *s);
#endif /* __XFUNCS_H */