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