Release 960824
[wine/multimedia.git] / include / xmalloc.h
blobf054eddeb330f3dc8cbee483cc74d54309432936
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
4 void *xmalloc( int size );
5 void *xrealloc( void *ptr, int size );
6 char *xstrdup( const char *str );
8 #endif /* __WINE_XMALLOC_H */