Don't create thunk for task signal proc, call it directly.
[wine] / include / xmalloc.h
1 #ifndef __WINE_XMALLOC_H
2 #define __WINE_XMALLOC_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
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 );
12
13 #ifdef __cplusplus
14 }
15 #endif
16
17 #endif  /* __WINE_XMALLOC_H */