diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-02 05:30:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-02 05:30:07 +0000 |
commit | b311b41561ba51860000e15f1fa3eb9b24449839 (patch) | |
tree | 37ae828f54fdecd6ad4d6a5530b755a4dd959798 | |
parent | 0cb6dcf5853800e5cf22a9911225c15050bf0980 (diff) | |
download | coreutils-b311b41561ba51860000e15f1fa3eb9b24449839.tar.xz |
Remove definition of setlocale.
Remove definitions of bindtextdomain and textdomain.
-rw-r--r-- | lib/argmatch.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/argmatch.c b/lib/argmatch.c index 3a181fcca..efe22cd47 100644 --- a/lib/argmatch.c +++ b/lib/argmatch.c @@ -1,5 +1,5 @@ /* argmatch.c -- find a match for a string in an array - Copyright (C) 1990, 1998 Free Software Foundation, Inc. + Copyright (C) 1990, 1998, 1999 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,16 +28,11 @@ #if HAVE_LOCALE_H # include <locale.h> #endif -#if !HAVE_SETLOCALE -# define setlocale(Category, Locale) /* empty */ -#endif #if ENABLE_NLS # include <libintl.h> # define _(Text) gettext (Text) #else -# define bindtextdomain(Domain, Directory) /* empty */ -# define textdomain(Domain) /* empty */ # define _(Text) Text #endif |