1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-04 07:33:07 +00:00

Removed unused (and unimplemented) stackcheck() and stackoverflow() routines

These routines were stubs that did nothing and were not called from anywhere
so lack value in even providing a template or hook for a fuller implementation.
Also note that "stackcheck" conflicts with a predefined symbol in some runtime
libraries.  Should these be implemented in the future they should use a
maiko-specific name.
This commit is contained in:
Nick Briggs
2021-12-09 14:57:45 -08:00
parent e1efc860c4
commit c7fd28a438
2 changed files with 0 additions and 38 deletions

View File

@@ -3,6 +3,4 @@
void stab(void);
void warn(const char *s);
int error(const char *s);
int stackcheck(void);
void stackoverflow(void);
#endif