2011-02-17 02:11:20 -05:00
|
|
|
#include "../interpreter.h"
|
2009-05-04 08:02:16 -04:00
|
|
|
|
|
|
|
/* list of all library functions and their prototypes */
|
|
|
|
struct LibraryFunction PlatformLibrary[] =
|
|
|
|
{
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2010-06-13 16:47:17 -04:00
|
|
|
void PlatformLibraryInit()
|
|
|
|
{
|
2011-02-15 17:35:13 -05:00
|
|
|
LibraryAdd(&GlobalTable, "platform library", &PlatformLibrary);
|
2010-06-13 16:47:17 -04:00
|
|
|
}
|
|
|
|
|