9
0
Fork 0
barebox/include/xfuncs.h

9 lines
160 B
C
Raw Normal View History

2007-07-05 16:01:39 +00:00
#ifndef __XFUNCS_H
#define __XFUNCS_H
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);
2007-07-05 16:01:39 +00:00
#endif /* __XFUNCS_H */