9 lines
100 B
C
9 lines
100 B
C
|
#ifndef _XMALLOC_H
|
||
|
#define _XMALLOC_H
|
||
|
|
||
|
char *xmalloc(size_t);
|
||
|
char *xstrdup(const char *);
|
||
|
|
||
|
#endif
|
||
|
|