mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
* sort_fptovp() and twowords() can be static and are sometimes (depending on flags) not needed at all * roundup() macro is unused and can be removed * maxpages can be unsigned (affects main.c) * variables used for return values of system calls should be correctly declared * pointers into Lisp_world should be DLword* rather than char*, and computations must take that into account. * ENOSPC and EDQUOT errors on write should return NOFILESPACE instead of FILECANNOTWRITE error.
9 lines
236 B
C
9 lines
236 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);
|
|
void lisp_finish(void);
|
|
#endif
|