From: Pierre Habouzit Date: Fri, 30 Mar 2007 23:45:10 +0000 (+0200) Subject: wibble X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=9f817787be195b0065d0ffb9d8f2d0ef3595538b;hp=92c3d4c767ddbc0e0c64dd6e132ce10627550580 wibble Signed-off-by: Pierre Habouzit --- diff --git a/globals.h b/globals.h index bd0caf6..089fae1 100644 --- a/globals.h +++ b/globals.h @@ -154,18 +154,10 @@ WHERE string_list_t *Ignore INITVAL (0); WHERE string_list_t *UnIgnore INITVAL (0); /* bit vector for boolean variables */ -#ifdef MAIN_C -unsigned char Options[(OPTMAX + 7) / 8]; -#else -extern unsigned char Options[]; -#endif +WHERE unsigned char Options[(OPTMAX + 7) / 8]; /* bit vector for the yes/no/ask variable type */ -#ifdef MAIN_C -unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8]; -#else -extern unsigned char QuadOptions[]; -#endif +WHERE unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8]; #ifdef USE_NNTP WHERE short NewsPollTimeout;