picoc/platform/library_ffox.c

14 lines
252 B
C
Raw Normal View History

#include "../interpreter.h"
/* list of all library functions and their prototypes */
struct LibraryFunction PlatformLibrary[] =
{
2015-06-07 00:51:02 -04:00
{NULL, NULL}
};
void PlatformLibraryInit()
{
LibraryAdd(&GlobalTable, "platform library", &PlatformLibrary);
}