repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Made request tracing more robust against bogus lengths.
[wine.git]
/
include
/
xmalloc.h
blob
cc44c33974af8e1f44b17e7d20f21ed4923a4985
1
#ifndef __WINE_XMALLOC_H
2
#define __WINE_XMALLOC_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#include <sys/types.h>
9
10
void
*
xmalloc
(
size_t
size
);
11
void
*
xcalloc
(
size_t
size
);
12
void
*
xrealloc
(
void
*
ptr
,
size_t
size
);
13
char
*
xstrdup
(
const char
*
str
);
14
15
#ifdef __cplusplus
16
}
17
#endif
18
19
#endif
/* __WINE_XMALLOC_H */