We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7102ec + 12aabdc commit 2a1beaaCopy full SHA for 2a1beaa
src/rules/rete.c
@@ -59,6 +59,7 @@
59
} while(0)
60
61
62
+handleEntry handleEntries[MAX_HANDLES];
63
unsigned int firstEmptyEntry = 1;
64
unsigned int lastEmptyEntry = MAX_HANDLES -1;
65
char entriesInitialized = 0;
src/rules/rules.h
@@ -66,7 +66,7 @@ typedef struct handleEntry {
66
unsigned int nextEmptyEntry;
67
} handleEntry;
68
69
-handleEntry handleEntries[MAX_HANDLES];
+extern handleEntry handleEntries[MAX_HANDLES];
70
extern unsigned int firstEmptyEntry;
71
extern unsigned int lastEmptyEntry;
72
extern char entriesInitialized;
0 commit comments