1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00
Interlisp.maiko/inc/gcscandefs.h
Nick Briggs 900c9557ab Fix gcscan1, gcscan2 can miss finding 0th entry in gc hashtable #1038
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.
2023-02-17 17:01:27 -08:00

6 lines
99 B
C

#ifndef GCSCANDEFS_H
#define GCSCANDEFS_H 1
int gcscan1(int probe);
int gcscan2(int probe);
#endif