Kaydet (Commit) 4cae5e6c authored tarafından Jack Jansen's avatar Jack Jansen

- Added getplatform()

- (temporarily?) removed newmodule reference
üst 614cf816
...@@ -128,6 +128,11 @@ getcopyright() ...@@ -128,6 +128,11 @@ getcopyright()
return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam"; return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
} }
char *
getplatform()
{
return "mac";
}
/* Return the initial python search path. This is called once from /* Return the initial python search path. This is called once from
initsys() to initialize sys.path. initsys() to initialize sys.path.
...@@ -282,7 +287,9 @@ extern void initfl(); ...@@ -282,7 +287,9 @@ extern void initfl();
extern void initthread(); extern void initthread();
extern void inittiming(); extern void inittiming();
extern void initsignal(); extern void initsignal();
#if 0
extern void initnew(); extern void initnew();
#endif
extern void initdl(); extern void initdl();
extern void initsyslog(); extern void initsyslog();
extern void initgestalt(); extern void initgestalt();
...@@ -353,7 +360,9 @@ struct { ...@@ -353,7 +360,9 @@ struct {
#endif #endif
{"md5", initmd5}, {"md5", initmd5},
{"rotor", initrotor}, {"rotor", initrotor},
#if 0
{"new", initnew}, {"new", initnew},
#endif
{"gestalt", initgestalt}, {"gestalt", initgestalt},
{"macfs", initmacfs}, {"macfs", initmacfs},
#ifdef THINK_C #ifdef THINK_C
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment