projects
/
platform
/
upstream
/
libsolv.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
current state of 'sat-solver'
[platform/upstream/libsolv.git]
/
src
/
util.h
1
/*
2
* util.h
3
*
4
*/
5
6
#ifndef UTIL_H
7
#define UTIL_H
8
9
extern void *xmalloc(size_t);
10
extern void *xmalloc2(size_t, size_t);
11
extern void *xcalloc(size_t, size_t);
12
extern void *xrealloc(void *, size_t);
13
extern void *xrealloc2(void *, size_t, size_t);
14
extern void *xfree(void *);
15
16
#endif /* UTIL_H */