diff --git a/lib-src/getopt.c b/lib-src/getopt.c index 72fc012f8d9..c17aecaefd2 100644 --- a/lib-src/getopt.c +++ b/lib-src/getopt.c @@ -75,6 +75,10 @@ # endif #endif +#if HAVE_LIBINTL_H +# include +#endif /* HAVE_LIBINTL_H */ + #if 0 # ifdef _LIBC # include @@ -84,12 +88,12 @@ # endif /* end #ifdef _LIBC */ #endif /* end #if 0 */ -#if HAVE_LIBINTL_H || defined _LIBC +#if HAVE_LIBINTL_H /* Should I include libintl.h here as in regex.c ? */ # define _(msgid) gettext (msgid) -#else /* not #if HAVE_LIBINTL_H || defined _LIBC */ +#else /* not #if HAVE_LIBINTL_H */ # define _(msgid) (msgid) -#endif /* end #if HAVE_LIBINTL_H || defined _LIBC */ +#endif /* end #if HAVE_LIBINTL_H */ #if defined _LIBC && defined USE_IN_LIBIO # include