mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
getopt: fix previous #ifdef 1 -> #if 1
This commit is contained in:
parent
a1aefdc50b
commit
83fe2f3fee
@ -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. */
|
||||||
|
Loading…
Reference in New Issue
Block a user