]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update libintl.glibc.
authorBruno Haible <bruno@clisp.org>
Fri, 29 Sep 2000 21:19:39 +0000 (21:19 +0000)
committerBruno Haible <bruno@clisp.org>
Fri, 29 Sep 2000 21:19:39 +0000 (21:19 +0000)
intl/ChangeLog
intl/libintl.glibc

index d51b5850b99001fa6b7c5b267492f586f0fd3899..5848f082234d32f093bf419520f8c589e755e5a9 100644 (file)
@@ -1,3 +1,7 @@
+2000-09-29  Bruno Haible  <haible@clisp.cons.org>
+
+       * libintl.glibc: Update from current glibc version.
+
 2000-09-18  Bruno Haible  <haible@clisp.cons.org>
 
        * dcigettext.c: Outside libc, use local variable names that don't
index 967a8cafcd490d05815bfdc79471549d5cc69898..eb81d7cd3af9ae3344b20a7f9f33fd4d12a40676 100644 (file)
@@ -35,37 +35,38 @@ extern char *gettext (__const char *__msgid) __THROW;
 
 /* Look up MSGID in the DOMAINNAME message catalog for the current
    LC_MESSAGES locale.  */
-extern char *dgettext (__const char *__domainname,
-                      __const char *__msgid) __THROW;
-extern char *__dgettext (__const char *__domainname,
-                        __const char *__msgid) __THROW;
+extern char *dgettext (__const char *__domainname, __const char *__msgid)
+     __THROW;
+extern char *__dgettext (__const char *__domainname, __const char *__msgid)
+     __THROW __attribute_format_arg__ (2);
 
 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
    locale.  */
 extern char *dcgettext (__const char *__domainname,
                        __const char *__msgid, int __category) __THROW;
 extern char *__dcgettext (__const char *__domainname,
-                         __const char *__msgid, int __category) __THROW;
+                         __const char *__msgid, int __category)
+     __THROW __attribute_format_arg__ (2);
 
 
 /* Similar to `gettext' but select the plural form corresponding to the
    number N.  */
 extern char *ngettext (__const char *__msgid1, __const char *__msgid2,
                       unsigned long int __n)
-     __THROW __attribute__ ((__format_arg__ (1)));
+     __THROW __attribute_format_arg__ (1);
 
 /* Similar to `dgettext' but select the plural form corresponding to the
    number N.  */
 extern char *dngettext (__const char *__domainname, __const char *__msgid1,
                        __const char *__msgid2, unsigned long int __n)
-     __THROW __attribute__ ((__format_arg__ (2)));
+     __THROW __attribute_format_arg__ (2);
 
 /* Similar to `dcgettext' but select the plural form corresponding to the
    number N.  */
 extern char *dcngettext (__const char *__domainname, __const char *__msgid1,
                         __const char *__msgid2, unsigned long int __n,
                         int __category)
-     __THROW __attribute__ ((__format_arg__ (2)));
+     __THROW __attribute_format_arg__ (2);
 
 
 /* Set the current default message catalog to DOMAINNAME.