]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - crypt/crypt.c
szl_PL locale: Fix a typo in the previous commit (bug 24652).
[thirdparty/glibc.git] / crypt / crypt.c
index 1919210daf2b150ccc4b2e867f4c7e9ed6694b76..43c0ae3b4772c41932f21ebf32fb4a4429728f4d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * UFC-crypt: ultra fast crypt(3) implementation
  *
- * Copyright (C) 1991-2014 Free Software Foundation, Inc.
+ * Copyright (C) 1991-2019 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -34,9 +34,8 @@
 #define SBA(sb, v) (*(long32*)((char*)(sb)+(v)))
 
 void
-_ufc_doit_r(itr, __data, res)
-     ufc_long itr, *res;
-     struct crypt_data * __restrict __data;
+_ufc_doit_r (ufc_long itr, struct crypt_data * __restrict __data,
+            ufc_long *res)
 {
   int i;
   long32 s, *k;
@@ -80,9 +79,8 @@ _ufc_doit_r(itr, __data, res)
 #define SBA(sb, v) (*(long64*)((char*)(sb)+(v)))
 
 void
-_ufc_doit_r(itr, __data, res)
-     ufc_long itr, *res;
-     struct crypt_data * __restrict __data;
+_ufc_doit_r (ufc_long itr, struct crypt_data * __restrict __data,
+            ufc_long *res)
 {
   int i;
   long64 l, r, s, *k;