diff options
author | Jim Meyering <jim@meyering.net> | 1996-03-09 20:19:13 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-03-09 20:19:13 +0000 |
commit | 715765a5487d2e37c4d48e216e6958883db6a41f (patch) | |
tree | 05d3a6daffcd9629e21fb275fe387e06dc3ba440 /src/od.c | |
parent | de0fdbb080e3902f2a6d4ee795b6322565df424b (diff) | |
download | coreutils-715765a5487d2e37c4d48e216e6958883db6a41f.tar.xz |
(main): Initialize for internationalized message support: call setlocale,
bindtextdomain, and textdomain.
Diffstat (limited to 'src/od.c')
-rw-r--r-- | src/od.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1586,6 +1586,10 @@ main (int argc, char **argv) #endif program_name = argv[0]; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + err = 0; for (i = 0; i <= MAX_INTEGRAL_TYPE_SIZE; i++) |