Tabs to spaces, more consistent formatting, childs -> children, typos in
[AROS.git] / compiler / purify / src / util.h
blob83b0857aa26bcc5975b9cb0e35d8597f0adc8ec4
1 #ifndef _UTIL_H
2 #define _UTIL_H
4 #define xmalloc _Purify_xmalloc
5 #define xfree _Purify_xfree
7 void * xmalloc (int size);
8 void xfree (void *);
10 #endif /* _UTIL_H */