1
0
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:
Nick Briggs
2022-12-22 15:27:49 -08:00
parent 6d7b4c1cd2
commit 748c52fbaa

View File

@@ -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);