APL/Fun/NewMalloc/newmem.h
2022-10-05 11:07:41 +02:00

6 lines
68 B
C

#ifndef NEWMEM
#define NEWMEM
void* newmalloc(size_t size);
#endif