getopt: fix previous #ifdef 1 -> #if 1

This commit is contained in:
gitlost 2024-05-28 02:48:08 +01:00
parent a1aefdc50b
commit 83fe2f3fee

View file

@ -136,7 +136,7 @@ struct option
`getopt'. */ `getopt'. */
/* zint: prototype it always to avoid warning `-Wdeprecated-non-prototype` (will be error in C2x) */ /* 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 /* Many other libraries have conflicting prototypes for getopt, with
differences in the consts, in stdlib.h. To avoid compilation differences in the consts, in stdlib.h. To avoid compilation
errors, only prototype getopt for the GNU C library. */ errors, only prototype getopt for the GNU C library. */