]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - crypt/crypt.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / crypt / crypt.h
index 0c30d93f343081afc1d9cf84d8b0bbe0105dcc33..2b0291145790cd5852296b82bf6cb88144b9007d 100644 (file)
@@ -1,8 +1,7 @@
 /*
  * UFC-crypt: ultra fast crypt(3) implementation
  *
- * Copyright (C) 1991-1993,1996-1998,2000,2004,2012
- * Free Software Foundation, Inc.
+ * Copyright (C) 1991-2015 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
@@ -38,7 +37,8 @@ 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 __nonnull ((1));
+extern void encrypt (char *__glibc_block, int __edflag)
+     __THROW __nonnull ((1));
 
 #ifdef __USE_GNU
 /* Reentrant versions of the functions above.  The additional argument
@@ -65,7 +65,7 @@ extern void setkey_r (const char *__key,
                      struct crypt_data * __restrict __data)
      __THROW __nonnull ((1, 2));
 
-extern void encrypt_r (char *__block, int __edflag,
+extern void encrypt_r (char *__glibc_block, int __edflag,
                       struct crypt_data * __restrict __data)
      __THROW __nonnull ((1, 3));
 #endif