blob: 1a58e61a1d07d8bf73e3c23c23eb7f09f3290906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef COMMON_H
#define COMMON_H
#include <sys/types.h>
void * xrealloc (void *m_ptr, size_t newsize);
char * xstrdup (char *str);
void * xcalloc (int factor, size_t size);
#endif
|