diff options
author | Bruno Haible <bruno@clisp.org> | 2003-10-16 10:54:18 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:03 +0200 |
commit | 93f7f8a0eee7fbc94f116587e1dcc95a8849adb3 (patch) | |
tree | ef56022ed1bde6c37361dfca3f65f9d8801f6f38 /gettext-runtime/intl/dcgettext.c | |
parent | 8baec33a32c22b01755b900f30d82e8a885f2cb4 (diff) | |
download | external_gettext-93f7f8a0eee7fbc94f116587e1dcc95a8849adb3.zip external_gettext-93f7f8a0eee7fbc94f116587e1dcc95a8849adb3.tar.gz external_gettext-93f7f8a0eee7fbc94f116587e1dcc95a8849adb3.tar.bz2 |
Assume ANSI C.
Diffstat (limited to 'gettext-runtime/intl/dcgettext.c')
-rw-r--r-- | gettext-runtime/intl/dcgettext.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gettext-runtime/intl/dcgettext.c b/gettext-runtime/intl/dcgettext.c index ca6a1c8..850acde 100644 --- a/gettext-runtime/intl/dcgettext.c +++ b/gettext-runtime/intl/dcgettext.c @@ -1,5 +1,5 @@ /* Implementation of the dcgettext(3) function. - Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -44,10 +44,7 @@ /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * -DCGETTEXT (domainname, msgid, category) - const char *domainname; - const char *msgid; - int category; +DCGETTEXT (const char *domainname, const char *msgid, int category) { return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category); } |