Fix previous commit: Don't use the macros defined in headers
authornbk <nbk>
Sun, 25 Sep 2005 15:55:40 +0000 (15:55 +0000)
committernbk <nbk>
Sun, 25 Sep 2005 15:55:40 +0000 (15:55 +0000)
that aren't included.

src/modules/rlm_dbm/rlm_dbm_cat.c

index 1b6bbec..cdc20c8 100644 (file)
@@ -69,7 +69,11 @@ static void dump_record(datum key,datum data)
        putchar('\n');
 }
 
-static void NEVER_RETURNS usage(void)
+#ifdef __GNUC__
+static void __attribute__((noreturn)) usage(void)
+#else
+static void usage(void)
+#endif
 {
        fprintf(stderr, "Usage: %s: [-f file] [-w] [-i number] [-l number] [-v]\n\n",progname);