]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Fri, 22 Sep 2000 18:03:53 +0000 (18:03 +0000)
committerAndreas Jaeger <aj@suse.de>
Fri, 22 Sep 2000 18:03:53 +0000 (18:03 +0000)
2000-09-22  Jakub Jelinek  <jakub@redhat.com>

* crypt/crypt.h (crypt, setkey, encrypt): Add __THROW.
(crypt_r, setkey_r, encrypt_r): Likewise.

ChangeLog
crypt/crypt.h

index 365e427a5c1ec74bc69f19878a5ea97b3d93f80d..5e7af8b66e8e5ca3d7d2c5df67b835f4e48aa042 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-09-22  Jakub Jelinek  <jakub@redhat.com>
+
+       * crypt/crypt.h (crypt, setkey, encrypt): Add __THROW.
+       (crypt_r, setkey_r, encrypt_r): Likewise.
+
 2000-09-22  Andreas Jaeger  <aj@suse.de>
 
        * locale/programs/repertoire.c (repertoiremap_hash): Don't specify
index 7018cb16ceabf06953532eae0360049a6b373b12..54682e8904ce6183c795394735e34162d8d4fed1 100644 (file)
 __BEGIN_DECLS
 
 /* Encrypt at most 8 characters from KEY using salt to perturb DES.  */
-extern char *crypt (__const char *__key, __const char *__salt);
+extern char *crypt (__const char *__key, __const char *__salt) __THROW;
 
 /* Setup DES tables according KEY.  */
-extern void setkey (__const char *__key);
+extern void setkey (__const char *__key) __THROW;
 
 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
    block in place.  */
-extern void encrypt (char *__block, int __edflag);
+extern void encrypt (char *__block, int __edflag) __THROW;
 
 #ifdef __USE_GNU
 /* Reentrant versions of the functions above.  The additional argument
@@ -57,13 +57,13 @@ struct crypt_data
   };
 
 extern char *crypt_r (__const char *__key, __const char *__salt,
-                     struct crypt_data * __restrict __data);
+                     struct crypt_data * __restrict __data) __THROW;
 
 extern void setkey_r (__const char *__key,
-                     struct crypt_data * __restrict __data);
+                     struct crypt_data * __restrict __data) __THROW;
 
 extern void encrypt_r (char *__block, int __edflag,
-                      struct crypt_data * __restrict __data);
+                      struct crypt_data * __restrict __data) __THROW;
 #endif
 
 __END_DECLS
This page took 0.045897 seconds and 5 git commands to generate.