diff options
Diffstat (limited to 'contrib/one-true-awk/main.c')
-rw-r--r-- | contrib/one-true-awk/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/one-true-awk/main.c b/contrib/one-true-awk/main.c index 491f1dcc52a3..b0d280787e12 100644 --- a/contrib/one-true-awk/main.c +++ b/contrib/one-true-awk/main.c @@ -22,12 +22,11 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ****************************************************************/ -const char *version = "version 20021129"; +const char *version = "version 20021213"; #define DEBUG #include <stdio.h> #include <ctype.h> -#include <locale.h> #include <stdlib.h> #include <string.h> #include <signal.h> @@ -55,7 +54,6 @@ int main(int argc, char *argv[]) { const char *fs = NULL; - setlocale(LC_ALL, ""); cmdname = argv[0]; if (argc == 1) { fprintf(stderr, "Usage: %s [-f programfile | 'program'] [-Ffieldsep] [-v var=value] [files]\n", cmdname); |