Release 980628
[wine] / include / xmalloc.h
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
3
4 void *xmalloc( int size );
5 void *xcalloc( int size );
6 void *xrealloc( void *ptr, int size );
7 char *xstrdup( const char *str );
8
9 #endif  /* __WINE_XMALLOC_H */