declare some variables in init.c instead of runtime startoff

This commit is contained in:
ceriel
1988-05-03 12:44:32 +00:00
parent 781a1218a5
commit e40b7407d5
2 changed files with 7 additions and 18 deletions

View File

@@ -25,3 +25,10 @@ init()
sigtrp(M2_UNIXSIG, SIGALRM);
sigtrp(M2_UNIXSIG, SIGTERM);
}
extern int catch();
int (*handler)() = catch;
char **argv, **environ;
int argc, StackSize;
char *CurrentProcess, MainProcess, StackBase, MainLB;