mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-30 13:26:53 +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.
12 lines
304 B
C
12 lines
304 B
C
#ifndef INITSOUTDEFS_H
|
|
#define INITSOUTDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR *fixp_value(LispPTR *ptr);
|
|
void init_ifpage(int sysout_size);
|
|
void init_iopage(void);
|
|
void build_lisp_map(void);
|
|
void init_for_keyhandle(void);
|
|
void init_for_bltchar(void);
|
|
void init_for_bitblt(void);
|
|
#endif
|