1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-03 14:59:26 +00:00

Create conspage.h to declare functions defined in conspage.c

Update files that depend on conspage functions to include conspage.h
Declare as static all functions in conspage.c that are not needed externally.
Add dependencies to makefile.

	modified:   bin/makefile-darwin.386-x
	modified:   bin/makefile-tail
	new file:   inc/conspage.h
	modified:   src/conspage.c
	modified:   src/mvs.c
	modified:   src/rplcons.c
	modified:   src/xc.c
	modified:   src/z2.c
This commit is contained in:
Nick Briggs
2017-06-29 22:33:35 -07:00
parent d450521ffd
commit 0371f19167
8 changed files with 20 additions and 10 deletions

3
inc/conspage.h Normal file
View File

@@ -0,0 +1,3 @@
struct conspage *next_conspage(void);
LispPTR N_OP_cons(register int cons_car, register int cons_cdr);
LispPTR cons(LispPTR cons_car, LispPTR cons_cdr);