b23d1e8e06
Also moved most internal header stuff to the new header interpreter.h. git-svn-id: http://picoc.googlecode.com/svn/trunk@549 21eae674-98b7-11dd-bd71-f92a316d2d60
14 lines
262 B
C
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);
|
|
}
|
|
|