Fixed typelib reading to correctly use the offset of the typelib that
[wine.git] / include / xmalloc.h
blob0e1c5658bf64af77aa1dc6710565fe343c866d41
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 void *xmalloc( size_t size );
9 void *xcalloc( size_t size );
10 void *xrealloc( void *ptr, size_t size );
11 char *xstrdup( const char *str );
13 #ifdef __cplusplus
15 #endif
17 #endif /* __WINE_XMALLOC_H */