Remove code conditional on S_SPLINT_S

I don't know for sure what that is, but it's redefining setlocale(3)
and LC_ALL, which is are defined by C99, so it's supect of being some
variety of an extinct dynosaur.  Maybe related to the Dodo.

Link: <https://github.com/shadow-maint/shadow/pull/600>
Cc: Christian Göttsche <cgzones@googlemail.com>
Cc: Iker Pedrosa <ipedrosa@redhat.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
Alejandro Colomar 2022-12-12 19:46:17 +01:00 committed by Serge Hallyn
parent 143e346dd5
commit 9dfa71f71c

View File

@ -7,17 +7,6 @@
#include "config.h" #include "config.h"
#include <stdbool.h> #include <stdbool.h>
/* Take care of NLS matters. */
#ifdef S_SPLINT_S
extern char *setlocale(int categories, const char *locale);
# define LC_ALL (6)
extern char * bindtextdomain (const char * domainname, const char * dirname);
extern char * textdomain (const char * domainname);
# define _(Text) Text
# define ngettext(Msgid1, Msgid2, N) \
((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
#else
#include <locale.h> #include <locale.h>
#define gettext_noop(String) (String) #define gettext_noop(String) (String)
@ -35,7 +24,6 @@ extern char * textdomain (const char * domainname);
# define ngettext(Msgid1, Msgid2, N) \ # define ngettext(Msgid1, Msgid2, N) \
((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
#endif #endif
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>