mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
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.
7 lines
120 B
C
7 lines
120 B
C
#ifndef COMMONDEFS_H
|
|
#define COMMONDEFS_H 1
|
|
void stab(void);
|
|
void warn(const char *s);
|
|
int error(const char *s);
|
|
#endif
|