repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git]
/
compiler
/
purify
/
src
/
util.h
blob
83b0857aa26bcc5975b9cb0e35d8597f0adc8ec4
1
#ifndef _UTIL_H
2
#define _UTIL_H
3
4
#define xmalloc _Purify_xmalloc
5
#define xfree _Purify_xfree
6
7
void
*
xmalloc
(
int
size
);
8
void
xfree
(
void
*);
9
10
#endif
/* _UTIL_H */