blob: 0e1c5658bf64af77aa1dc6710565fe343c866d41 [file] [log] [blame]
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +00001#ifndef __WINE_XMALLOC_H
2#define __WINE_XMALLOC_H
3
Uwe Bonnes79f16381998-11-30 10:36:51 +00004#ifdef __cplusplus
5extern "C" {
6#endif
7
Patrik Stridvall2c684081999-07-31 17:36:48 +00008void *xmalloc( size_t size );
9void *xcalloc( size_t size );
10void *xrealloc( void *ptr, size_t size );
Alexandre Julliard02ed4c21996-03-02 19:34:10 +000011char *xstrdup( const char *str );
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +000012
Uwe Bonnes79f16381998-11-30 10:36:51 +000013#ifdef __cplusplus
14}
15#endif
16
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +000017#endif /* __WINE_XMALLOC_H */