summaryrefslogtreecommitdiffstats
path: root/globals.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-08-15 11:43:03 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-08-15 11:43:03 +0000
commitd4c913f7f5de8675216d21975a49b61342600e26 (patch)
treebfff33169d7a683640b8b9bcc26827e37eb810c8 /globals.h
parentd0051659a6b712c4fffa8656fe1cb1fe3927e1aa (diff)
Various changes added over the last week:
- $delete_untag - creation of "application/pgp" messages - an attempt to fix prepare. - Browser format changes
Diffstat (limited to 'globals.h')
-rw-r--r--globals.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/globals.h b/globals.h
index ebc1e5df..05f26f93 100644
--- a/globals.h
+++ b/globals.h
@@ -111,7 +111,11 @@ extern unsigned char Options[];
#endif
/* bit vector for the yes/no/ask variable type */
-WHERE unsigned long QuadOptions INITVAL (0);
+#ifdef MAIN_C
+unsigned char QuadOptions[(OPT_MAX*2 + 7) / 8];
+#else
+extern unsigned char QuadOptions[];
+#endif
WHERE unsigned short Counter INITVAL (0);