1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 20:02:37 +00:00

Fix ups for new llstk.h.

modified:   bin/makefile-darwin.386-x
	modified:   bin/makefile-tail
	new file:   inc/llstk.h
	modified:   src/gcfinal.c
	modified:   src/hardrtn.c
	modified:   src/llstk.c
	modified:   src/uraid.c
	modified:   src/xc.c
	modified:   src/xc.c.orig
This commit is contained in:
Nick Briggs
2017-06-30 17:42:46 -07:00
parent b7b658e8d3
commit 35b4ad4350
9 changed files with 25 additions and 10 deletions

View File

@@ -54,6 +54,7 @@ static char *id = "$Id: gcfinal.c,v 1.3 1999/05/31 23:35:31 sybalsky Exp $ Copyr
#include "adr68k.h"
#include "lspglob.h"
#include "stack.h"
#include "llstk.h"
#include "cell.h"
#include "ifpage.h"
#include "gc.h"

View File

@@ -37,6 +37,7 @@ static char *id = "$Id: hardrtn.c,v 1.4 2001/12/24 01:09:02 sybalsky Exp $ Copyr
#include "emlglob.h"
#include "cell.h"
#include "stack.h"
#include "llstk.h"
#include "return.h"
#define MAKE_FXCOPY(fx68k) \

View File

@@ -36,11 +36,12 @@ static char *id = "$Id: llstk.c,v 1.5 2001/12/26 22:17:03 sybalsky Exp $ Copyrig
#include "emlglob.h"
#include "cell.h"
#include "stack.h"
#include "llstk.h"
#include "return.h"
extern int extended_frame;
void blt(register DLword *dest68k, register DLword *source68k, int nw);
static DLword *extendstack(void);
/******************************************************************/
/*
@@ -49,12 +50,10 @@ void blt(register DLword *dest68k, register DLword *source68k, int nw);
Edited by : Take(March 14, 1988)
*/
/******************************************************************/
LispPTR moveframe(register FX *oldfx68k) {
static LispPTR moveframe(register FX *oldfx68k) {
register int size;
register DLword *next68k;
register DLword *new68k;
DLword *freestackblock(DLword n, StackWord * start68k, int align);
DLword *extendstack(void);
int nametbl_on_stk = NIL;
int at_eos = NIL;
@@ -252,7 +251,7 @@ int do_stackoverflow(int incallp) {
*/
/******************************************************************/
DLword *extendstack(void) {
static DLword *extendstack(void) {
register LispPTR easp;
register LispPTR scanptr;

View File

@@ -82,6 +82,7 @@ extern int Win_security_p;
#include "emlglob.h"
#include "cell.h"
#include "stack.h"
#include "llstk.h"
#include "ifpage.h"
#include "debug.h"
#include "devconf.h"

View File

@@ -45,6 +45,7 @@ static char *id = "$Id: xc.c,v 1.4 2001/12/26 22:17:06 sybalsky Exp $ Copyright
#include "address.h"
#include "adr68k.h"
#include "stack.h"
#include "llstk.h"
#include "dbprint.h"
#include "lspglob.h"

View File

@@ -50,6 +50,7 @@ static char *id = "$Id: xc.c,v 1.3 1999/05/31 23:35:47 sybalsky Exp $ Copyright
#include "address.h"
#include "adr68k.h"
#include "stack.h"
#include "llstk.h"
#include "dbprint.h"
#include "lspglob.h"