mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-21 10:03:00 +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.
17 lines
581 B
C
17 lines
581 B
C
#ifndef LLSTKDEFS_H
|
|
#define LLSTKDEFS_H 1
|
|
#include "lispemul.h" /* for DLword */
|
|
#include "stack.h" /* for FX, StackWord, Bframe */
|
|
int do_stackoverflow(int incallp);
|
|
DLword *freestackblock(DLword n, StackWord *start68k, int align);
|
|
void decusecount68k(register FX *frame68k);
|
|
void flip_cursorbar(int n);
|
|
void blt(register DLword *dest68k, register DLword *source68k, int nw);
|
|
void stack_check(StackWord *start68k);
|
|
void walk_stack(StackWord *start68k);
|
|
void quick_stack_check(void);
|
|
void check_FX(FX *fx68k);
|
|
void check_BF(Bframe *bf68k);
|
|
int check_stack_rooms(FX *fx68k);
|
|
#endif
|