X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-lib%2Flib-lib.h;h=a4098e23e8539951a0707929da6fad694217746a;hp=c19a9ac9f249497f5971a206b0aefd9ae9b6bf56;hb=2d0afa54b647f32caa7a4bf3917e50f5d3e8c1e2;hpb=38dacbf03fe1a0daa9ce426caaef5582b90006b2 diff --git a/lib-lib/lib-lib.h b/lib-lib/lib-lib.h index c19a9ac..a4098e2 100644 --- a/lib-lib/lib-lib.h +++ b/lib-lib/lib-lib.h @@ -20,7 +20,7 @@ #ifndef MUTT_LIB_LIB_LIB_LIB_H #define MUTT_LIB_LIB_LIB_LIB_H -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include "../config.h" #endif @@ -101,6 +101,13 @@ /* }}} */ +typedef union __attribute__((transparent_union)) anytype { + void *ptr; + long li; + int i; + short si; +} anytype; + #include "mem.h" #include "str.h" @@ -114,11 +121,4 @@ #include "rx.h" #include "url.h" -typedef union __attribute__((transparent_union)) anytype { - void *ptr; - long li; - int i; - short si; -} anytype; - #endif