1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-01 22:32:40 +00:00

Make dremove() static in src/storage.c, there are no other references.

This commit is contained in:
Nick Briggs
2020-12-11 22:06:23 -08:00
parent 8ee75ede4e
commit a059b67e88
2 changed files with 2 additions and 2 deletions

View File

@@ -45,6 +45,7 @@ static const char *id =
static void advance_array_seg(register unsigned int nxtpage);
static void advance_storagestate(DLword flg);
static LispPTR dremove(LispPTR x, LispPTR l);
static void set_storage_state(void);
/*****************************************************************/
@@ -242,7 +243,7 @@ static void set_storage_state(void) {
} /* set_storage_state() end */
LispPTR dremove(LispPTR x, LispPTR l) {
static LispPTR dremove(LispPTR x, LispPTR l) {
LispPTR z;
if (Listp(l) == NIL)