12 lines
135 B
C
12 lines
135 B
C
#ifndef _XMALLOC_H
|
|
#define _XMALLOC_H
|
|
|
|
/* $Id$ */
|
|
|
|
char *xmalloc(size_t);
|
|
char *xstrdup(const char *);
|
|
char *xstrcpy(char *);
|
|
|
|
#endif
|
|
|