mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
The Lisp implementation distinguishes between 0 and NIL as the result of
the gcscan1/gcscan2 opcodes, however the C implementation did not, since
NIL and 0 are indistinguishable.
6 lines
99 B
C
6 lines
99 B
C
#ifndef GCSCANDEFS_H
|
|
#define GCSCANDEFS_H 1
|
|
int gcscan1(int probe);
|
|
int gcscan2(int probe);
|
|
#endif
|