about summary refs log tree commit diff
path: root/crypt
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 /crypt
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 'crypt')
-rw-r--r--crypt/crypt.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/crypt/crypt.h b/crypt/crypt.h
index ba1a581fb2..dcb89d813c 100644
--- a/crypt/crypt.h
+++ b/crypt/crypt.h
@@ -1,7 +1,7 @@
 /*
  * UFC-crypt: ultra fast crypt(3) implementation
  *
- * Copyright (C) 1991, 92, 93, 96, 97, 98, 2000 Free Software Foundation, Inc.
+ * Copyright (C) 1991,92,93,96,97,98,2000,2004 Free Software Foundation, Inc.
  *
  * The GNU C Library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -30,14 +30,15 @@
 __BEGIN_DECLS
 
 /* Encrypt at most 8 characters from KEY using salt to perturb DES.  */
-extern char *crypt (__const char *__key, __const char *__salt) __THROW;
+extern char *crypt (__const char *__key, __const char *__salt)
+     __THROW __nonnull ((1, 2));
 
 /* Setup DES tables according KEY.  */
-extern void setkey (__const char *__key) __THROW;
+extern void setkey (__const char *__key) __THROW __nonnull ((1));
 
 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
    block in place.  */
-extern void encrypt (char *__block, int __edflag) __THROW;
+extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
 
 #ifdef __USE_GNU
 /* Reentrant versions of the functions above.  The additional argument
@@ -57,13 +58,16 @@ struct crypt_data
   };
 
 extern char *crypt_r (__const char *__key, __const char *__salt,
-		      struct crypt_data * __restrict __data) __THROW;
+		      struct crypt_data * __restrict __data)
+     __THROW __nonnull ((1, 2, 3));
 
 extern void setkey_r (__const char *__key,
-		      struct crypt_data * __restrict __data) __THROW;
+		      struct crypt_data * __restrict __data)
+     __THROW __nonnull ((1, 2));
 
 extern void encrypt_r (char *__block, int __edflag,
-		       struct crypt_data * __restrict __data) __THROW;
+		       struct crypt_data * __restrict __data)
+     __THROW __nonnull ((1, 3));
 #endif
 
 __END_DECLS