without stddef.h types like size_t are not defined on some systems
This commit is contained in:
parent
deb59762db
commit
b20af86749
|
|
@ -1,6 +1,8 @@
|
|||
#ifndef _MEMORY_H
|
||||
#define _MEMORY_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifndef HAVE_LIBGC
|
||||
extern void *tmalloc(size_t num);
|
||||
extern void *trealloc(void *str, size_t num);
|
||||
|
|
|
|||
Loading…
Reference in New Issue