Browse Source

without stddef.h types like size_t are not defined on some systems

pre-master-46
dwarning 19 years ago
parent
commit
b20af86749
  1. 2
      src/include/memory.h

2
src/include/memory.h

@ -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…
Cancel
Save