From 83fe2f3fee4168a707d0b289ee138f3792cf9341 Mon Sep 17 00:00:00 2001 From: gitlost Date: Tue, 28 May 2024 02:48:08 +0100 Subject: [PATCH] getopt: fix previous #ifdef 1 -> #if 1 --- getopt/getopt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getopt/getopt.h b/getopt/getopt.h index 2a2c54ee..30999002 100644 --- a/getopt/getopt.h +++ b/getopt/getopt.h @@ -136,7 +136,7 @@ struct option `getopt'. */ /* zint: prototype it always to avoid warning `-Wdeprecated-non-prototype` (will be error in C2x) */ -#ifdef 1 /* was __GNU_LIBRARY__ */ +#if 1 /* was #ifdef __GNU_LIBRARY__ */ /* Many other libraries have conflicting prototypes for getopt, with differences in the consts, in stdlib.h. To avoid compilation errors, only prototype getopt for the GNU C library. */