mirror of
https://github.com/Interlisp/maiko.git
synced 2026-05-01 22:26:50 +00:00
Makes vmemsave.c lispstringP implementation local and updates header file accordingly
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
#ifndef VMEMSAVEDEFS_H
|
#ifndef VMEMSAVEDEFS_H
|
||||||
#define VMEMSAVEDEFS_H 1
|
#define VMEMSAVEDEFS_H 1
|
||||||
#include "lispemul.h" /* for LispPTR, DLword */
|
#include "lispemul.h" /* for LispPTR */
|
||||||
int lispstringP(LispPTR Lisp);
|
|
||||||
LispPTR vmem_save(char *sysout_file_name);
|
LispPTR vmem_save(char *sysout_file_name);
|
||||||
LispPTR vmem_save0(LispPTR *args);
|
LispPTR vmem_save0(LispPTR *args);
|
||||||
void lisp_finish(int exit_status);
|
void lisp_finish(int exit_status);
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ extern int please_fork;
|
|||||||
/* */
|
/* */
|
||||||
/************************************************************************/
|
/************************************************************************/
|
||||||
|
|
||||||
int lispstringP(LispPTR Lisp)
|
static int lispstringP(LispPTR Lisp)
|
||||||
{
|
{
|
||||||
switch (((OneDArray *)(NativeAligned4FromLAddr(Lisp)))->typenumber) {
|
switch (((OneDArray *)(NativeAligned4FromLAddr(Lisp)))->typenumber) {
|
||||||
case THIN_CHAR_TYPENUMBER:
|
case THIN_CHAR_TYPENUMBER:
|
||||||
|
|||||||
Reference in New Issue
Block a user