aboutsummaryrefslogtreecommitdiff
path: root/intl/ngettext.c
diff options
context:
space:
mode:
Diffstat (limited to 'intl/ngettext.c')
-rw-r--r--intl/ngettext.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/intl/ngettext.c b/intl/ngettext.c
index 4a3186c03b5..3573f19dd89 100644
--- a/intl/ngettext.c
+++ b/intl/ngettext.c
@@ -54,10 +54,8 @@
LC_MESSAGES locale. If not found, returns MSGID itself (the default
text). */
char *
-NGETTEXT (msgid1, msgid2, n)
- const char *msgid1;
- const char *msgid2;
- unsigned long int n;
+NGETTEXT (const char *msgid1, const char *msgid2,
+ unsigned long int n)
{
return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES);
}