mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
11 lines
258 B
C
11 lines
258 B
C
|
#ifndef _alloc_h_
|
||
|
#define _alloc_h_
|
||
|
|
||
|
#include <stddef.h> /* typedef size_t */
|
||
|
|
||
|
extern void *xmalloc (size_t size);
|
||
|
extern void *xrealloc (void *old, size_t new_size);
|
||
|
extern void *xcalloc (size_t num_elems, size_t byte_size);
|
||
|
|
||
|
#endif /* Not _alloc_h_ */
|