mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-28 12:39:28 +00:00
lispcmp should be declared static
This commit is contained in:
@@ -171,7 +171,7 @@ LispPTR compare_chars(const char *char1, const char *char2, DLword length) {
|
||||
|
||||
} /* end compare_chars */
|
||||
|
||||
int lispcmp(const DLword *char1, const char *char2, int len) {
|
||||
static int lispcmp(const DLword *char1, const char *char2, int len) {
|
||||
int index;
|
||||
for (index = 0; index < len; index++) {
|
||||
if (GETWORD(char1++) != GETBYTE(char2++)) return (0);
|
||||
|
||||
Reference in New Issue
Block a user