9
0
Fork 0
barebox/include/xfuncs.h

9 lines
160 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);
#endif /* __XFUNCS_H */