File: xmalloc.h

package info (click to toggle)
hx 0.7.14-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 564 kB
  • ctags: 834
  • sloc: ansic: 7,901; sh: 152; makefile: 81
file content (11 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _XMALLOC_H
#define _XMALLOC_H 1

#include "hx_types.h"

extern void *xmalloc (size_t size);
extern void *xrealloc (void *ptr, size_t size);
extern void xfree (void *ptr);
extern char *xstrdup (const char *str);

#endif /* !_XMALLOC_H */