blob: 622b31b115194d3589f21737bded076d54c5376d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _xmalloc_h_
#define _xmalloc_h_ 1
#include <sys/types.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void *xmalloc __P((size_t n));
void *xrealloc __P((void *p, size_t n));
#endif /* _xmalloc_h_ */
|