Release 960114
[wine/hacks.git] / include / xmalloc.h
blob396fde0527b8e19c2b46d6ccbe87feca91c75837
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
4 #ifdef HAVE_STDLIB_H
5 #include <stdlib.h>
6 #else
7 #define size_t unsigned int
8 #endif
10 void *xmalloc (size_t);
11 void *xrealloc (void *, size_t);
12 char *xstrdup( const char * );
14 #endif /* __WINE_XMALLOC_H */