about summary refs log tree commit diff
path: root/catgets/nl_types.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-09-17 19:27:08 +0000
committerUlrich Drepper <drepper@redhat.com>2004-09-17 19:27:08 +0000
commit41102740fba12515ac75cc4169b8809085a9624f (patch)
tree561bb295b011d5c461aa2cd42efd7b84a7474571 /catgets/nl_types.h
parent8a1f658bd783e625d947933b6603dbcedb31f75b (diff)
downloadglibc-41102740fba12515ac75cc4169b8809085a9624f.tar.gz
glibc-41102740fba12515ac75cc4169b8809085a9624f.tar.xz
glibc-41102740fba12515ac75cc4169b8809085a9624f.zip
Update.
	* catgets/nl_types.h: Likewise.
	* crypt/crypt.h: Likewise.
	* debug/execinfo.h: Likewise.
Diffstat (limited to 'catgets/nl_types.h')
-rw-r--r--catgets/nl_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/catgets/nl_types.h b/catgets/nl_types.h
index 838fe7e867..c1190b58f8 100644
--- a/catgets/nl_types.h
+++ b/catgets/nl_types.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1999, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 1999, 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -40,15 +40,15 @@ typedef int nl_item;
 
    This function is a possible cancellation point and therefore not
    marked with __THROW.  */
-extern nl_catd catopen (__const char *__cat_name, int __flag);
+extern nl_catd catopen (__const char *__cat_name, int __flag) __nonnull ((1));
 
 /* Return translation with NUMBER in SET of CATALOG; if not found
    return STRING.  */
 extern char *catgets (nl_catd __catalog, int __set, int __number,
-		      __const char *__string) __THROW;
+		      __const char *__string) __THROW __nonnull ((1));
 
 /* Close message CATALOG.  */
-extern int catclose (nl_catd __catalog) __THROW;
+extern int catclose (nl_catd __catalog) __THROW __nonnull ((1));
 
 __END_DECLS