mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-25 11:36:31 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
9 lines
308 B
C
9 lines
308 B
C
#ifndef GCHTFINDDEFS_H
|
|
#define GCHTFINDDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR, DLword */
|
|
void enter_big_reference_count(LispPTR ptr);
|
|
void modify_big_reference_count(LispPTR *entry, DLword casep, LispPTR ptr);
|
|
LispPTR htfind(LispPTR ptr, int casep);
|
|
LispPTR rec_htfind(LispPTR ptr, int casep);
|
|
#endif
|