1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 04:38:00 +00:00

The todo_... variables are not referenced elsewhere and can be static.

This commit is contained in:
Nick Briggs
2023-01-01 20:18:02 -08:00
parent a536faa736
commit 4b3997b432

View File

@@ -100,9 +100,9 @@
} \
} while (0)
unsigned todo_uses = 0;
unsigned todo_misses = 0;
unsigned todo_reads = 0;
static unsigned todo_uses = 0;
static unsigned todo_misses = 0;
static unsigned todo_reads = 0;
/************************************************************************/
/* */