mirror of
https://github.com/reactos/wine.git
synced 2025-02-21 21:32:01 +00:00
18 lines
288 B
C
18 lines
288 B
C
#ifndef __WINE_XMALLOC_H
|
|
#define __WINE_XMALLOC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *xmalloc( size_t size );
|
|
void *xcalloc( size_t size );
|
|
void *xrealloc( void *ptr, size_t size );
|
|
char *xstrdup( const char *str );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WINE_XMALLOC_H */
|