This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/unix/xmalloc.h

12 lines
135 B
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
#ifndef _XMALLOC_H
#define _XMALLOC_H
2005-08-27 12:06:48 +00:00
/* $Id$ */
2001-08-17 05:46:24 +00:00
char *xmalloc(size_t);
char *xstrdup(const char *);
2005-08-27 12:06:48 +00:00
char *xstrcpy(char *);
2001-08-17 05:46:24 +00:00
#endif