summaryrefslogtreecommitdiff
path: root/intl/libintl.h
diff options
context:
space:
mode:
Diffstat (limited to 'intl/libintl.h')
-rw-r--r--intl/libintl.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/intl/libintl.h b/intl/libintl.h
index 70a4706021..e38b5619bf 100644
--- a/intl/libintl.h
+++ b/intl/libintl.h
@@ -31,21 +31,18 @@ __BEGIN_DECLS
/* Look up MSGID in the current default message catalog for the current
LC_MESSAGES locale. If not found, returns MSGID itself (the default
text). */
-extern char *gettext (__const char *__msgid)
- __THROW __attribute_format_arg__ (1);
+extern char *gettext (__const char *__msgid);
/* Look up MSGID in the DOMAINNAME message catalog for the current
LC_MESSAGES locale. */
-extern char *dgettext (__const char *__domainname, __const char *__msgid)
- __THROW __attribute_format_arg__ (2);
+extern char *dgettext (__const char *__domainname, __const char *__msgid);
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 __attribute_format_arg__ (2);
+ __const char *__msgid, int __category);
extern char *__dcgettext (__const char *__domainname,
__const char *__msgid, int __category)
__THROW __attribute_format_arg__ (2);