picoc/platform/library_ffox.c
2010-06-13 20:47:17 +00:00

14 lines
257 B
C

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