985e6c960f
git-svn-id: http://picoc.googlecode.com/svn/trunk@440 21eae674-98b7-11dd-bd71-f92a316d2d60
14 lines
257 B
C
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);
|
|
}
|
|
|