eci/platform/library_ffox.c
2014-01-16 21:52:25 +01:00

14 lines
262 B
C

#include "../interpreter.h"
/* list of all library functions and their prototypes */
struct LibraryFunction PlatformLibrary[] =
{
{ NULL, NULL }
};
void PlatformLibraryInit()
{
LibraryAdd(&GlobalTable, "platform library", &PlatformLibrary);
}