about summary refs log tree commit diff
path: root/crypt
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-01 21:33:28 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-01 21:33:28 +0000
commita0db84071640f9ad108ba35dc3c751ab8faf506c (patch)
tree50ed1dba1630fcc8a8b633612200b20869ba4349 /crypt
parent522dc8552e844b12fa505404585f922b50cc2ea2 (diff)
downloadglibc-a0db84071640f9ad108ba35dc3c751ab8faf506c.tar.gz
glibc-a0db84071640f9ad108ba35dc3c751ab8faf506c.tar.xz
glibc-a0db84071640f9ad108ba35dc3c751ab8faf506c.zip
Remove K&R compatibility support.
Diffstat (limited to 'crypt')
-rw-r--r--crypt/sysdeps/unix/crypt.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/crypt/sysdeps/unix/crypt.h b/crypt/sysdeps/unix/crypt.h
index 13191e6f33..7018cb16ce 100644
--- a/crypt/sysdeps/unix/crypt.h
+++ b/crypt/sysdeps/unix/crypt.h
@@ -1,7 +1,7 @@
 /*
  * UFC-crypt: ultra fast crypt(3) implementation
  *
- * Copyright (C) 1991, 92, 93, 96, 97, 98 Free Software Foundation, Inc.
+ * Copyright (C) 1991, 92, 93, 96, 97, 98, 2000 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -30,14 +30,14 @@
 __BEGIN_DECLS
 
 /* Encrypt at most 8 characters from KEY using salt to perturb DES.  */
-extern char *crypt __P ((__const char *__key, __const char *__salt));
+extern char *crypt (__const char *__key, __const char *__salt);
 
 /* Setup DES tables according KEY.  */
-extern void setkey __P ((__const char *__key));
+extern void setkey (__const char *__key);
 
 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
    block in place.  */
-extern void encrypt __P ((char *__block, int __edflag));
+extern void encrypt (char *__block, int __edflag);
 
 #ifdef __USE_GNU
 /* Reentrant versions of the functions above.  The additional argument
@@ -56,14 +56,14 @@ struct crypt_data
     int  direction, initialized;
   };
 
-extern char *crypt_r __P ((__const char *__key, __const char *__salt,
-			   struct crypt_data * __restrict __data));
+extern char *crypt_r (__const char *__key, __const char *__salt,
+		      struct crypt_data * __restrict __data);
 
-extern void setkey_r __P ((__const char *__key,
-			   struct crypt_data * __restrict __data));
+extern void setkey_r (__const char *__key,
+		      struct crypt_data * __restrict __data);
 
-extern void encrypt_r __P ((char *__block, int __edflag,
-			    struct crypt_data * __restrict __data));
+extern void encrypt_r (char *__block, int __edflag,
+		       struct crypt_data * __restrict __data);
 #endif
 
 __END_DECLS