diff options
author | Bruno Haible <bruno@clisp.org> | 2003-09-09 13:40:36 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:58 +0200 |
commit | f6fa605c1b5cab6ac053dbefa21e55d3e5d4a544 (patch) | |
tree | aaa44f3106911293bf83c146dc9942e23a5165cb /gettext-tools/src/write-po.c | |
parent | a1bbb95481bc8c216cb27310351451408e962c70 (diff) | |
download | external_gettext-f6fa605c1b5cab6ac053dbefa21e55d3e5d4a544.zip external_gettext-f6fa605c1b5cab6ac053dbefa21e55d3e5d4a544.tar.gz external_gettext-f6fa605c1b5cab6ac053dbefa21e55d3e5d4a544.tar.bz2 |
Avoid warnings on OSF/1.
Diffstat (limited to 'gettext-tools/src/write-po.c')
-rw-r--r-- | gettext-tools/src/write-po.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gettext-tools/src/write-po.c b/gettext-tools/src/write-po.c index abe8eff..9120f21 100644 --- a/gettext-tools/src/write-po.c +++ b/gettext-tools/src/write-po.c @@ -51,7 +51,7 @@ /* Our regular abbreviation. */ #define _(str) gettext (str) -#ifdef HAVE_PUTC_UNLOCKED +#if HAVE_DECL_PUTC_UNLOCKED # undef putc # define putc putc_unlocked #endif |