14 lines
152 B
C
14 lines
152 B
C
#ifndef _HAVE_UTIL_H
|
|
#define _HAVE_UTIL_H
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
void*
|
|
util_malloc0(int size);
|
|
|
|
int
|
|
util_next_p2 ( int a );
|
|
|
|
#endif
|