repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 960114
[wine/gsoc-2012-control.git]
/
include
/
xmalloc.h
blob
396fde0527b8e19c2b46d6ccbe87feca91c75837
1
#ifndef __WINE_XMALLOC_H
2
#define __WINE_XMALLOC_H
3
4
#ifdef HAVE_STDLIB_H
5
#include <stdlib.h>
6
#else
7
#define size_t unsigned int
8
#endif
9
10
void
*
xmalloc
(
size_t
);
11
void
*
xrealloc
(
void
*,
size_t
);
12
char
*
xstrdup
(
const char
* );
13
14
#endif
/* __WINE_XMALLOC_H */