picoc/platform/library_ffox.c
Joseph Poirier c5384cb514 formatting
2015-06-06 23:51:02 -05:00

14 lines
252 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);
}