projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 971012
[wine]
/
include
/
xmalloc.h
1
#ifndef __WINE_XMALLOC_H
2
#define __WINE_XMALLOC_H
3
4
void *xmalloc( int size );
5
void *xrealloc( void *ptr, int size );
6
char *xstrdup( const char *str );
7
8
#endif /* __WINE_XMALLOC_H */