mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-17 16:44: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.
11 lines
324 B
C
11 lines
324 B
C
#ifndef VMEMSAVEDEFS_H
|
|
#define VMEMSAVEDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR, DLword */
|
|
int lispstringP(LispPTR Lisp);
|
|
LispPTR vmem_save(char *sysout_file_name);
|
|
LispPTR vmem_save0(LispPTR *args);
|
|
int twowords(const void *i, const void *j);
|
|
void sort_fptovp(DLword *fptovp, int size);
|
|
void lisp_finish(void);
|
|
#endif
|