mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-14 07:30:21 +00:00
Make dremove() static in src/storage.c, there are no other references.
This commit is contained in:
parent
8ee75ede4e
commit
a059b67e88
@ -1,7 +1,6 @@
|
||||
#ifndef STORAGEDEFS_H
|
||||
#define STORAGEDEFS_H 1
|
||||
void checkfor_storagefull(register unsigned int npages);
|
||||
LispPTR dremove(LispPTR x, LispPTR l);
|
||||
LispPTR newpage(LispPTR base);
|
||||
void init_storage(void);
|
||||
#endif
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user