2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
13 #ifndef SATSOLVER_UTIL_H
14 #define SATSOLVER_UTIL_H
16 extern void *xmalloc(size_t);
17 extern void *xmalloc2(size_t, size_t);
18 extern void *xcalloc(size_t, size_t);
19 extern void *xrealloc(void *, size_t);
20 extern void *xrealloc2(void *, size_t, size_t);
21 extern void *xfree(void *);
23 #endif /* SATSOLVER_UTIL_H */