Added missing #include "config.h"
[wine/multimedia.git] / include / xmalloc.h
blob78c355ce71dcaed5cca06adc10be9ee846377b7e
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
4 void *xmalloc( int size );
5 void *xcalloc( int size );
6 void *xrealloc( void *ptr, int size );
7 char *xstrdup( const char *str );
9 #endif /* __WINE_XMALLOC_H */