Cucumber/Kernel/include/Lua/stdlib.h
Sergiusz Bazański 5c922d933e Lua support in the process of being added.
Lua still doesn't compile, but I'm in the process of adding some
stubs (some really silly ones), in order to at least get it to
build properly.
2012-08-23 13:58:23 +02:00

9 lines
210 B
C

#ifndef __TIER0_ANSI_STDLIB_H__
#define __TIER0_ANSI_STDLIB_H__
void *malloc(unsigned long long int size);
int abs(int X);
void abort(void);
long int strtol(const char *nptr, char **endptr, int base);
#endif