repo.or.cz
/
wine
/
multimedia.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 980628
[wine/multimedia.git]
/
include
/
xmalloc.h
blob
78c355ce71dcaed5cca06adc10be9ee846377b7e
1
#ifndef __WINE_XMALLOC_H
2
#define __WINE_XMALLOC_H
3
4
void
*
xmalloc
(
int
size
);
5
void
*
xcalloc
(
int
size
);
6
void
*
xrealloc
(
void
*
ptr
,
int
size
);
7
char
*
xstrdup
(
const char
*
str
);
8
9
#endif
/* __WINE_XMALLOC_H */