summaryrefslogtreecommitdiff
path: root/include/skipjack.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /include/skipjack.h
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'include/skipjack.h')
-rw-r--r--include/skipjack.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/skipjack.h b/include/skipjack.h
index 37c141d5f49..ae1b0e3ff16 100644
--- a/include/skipjack.h
+++ b/include/skipjack.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: skipjack.h,v 1.2 2001/01/28 23:43:15 niklas Exp $ */
+/* $OpenBSD: skipjack.h,v 1.3 2002/02/16 21:27:17 millert Exp $ */
/*
* Further optimized test implementation of SKIPJACK algorithm
@@ -13,6 +13,6 @@
* 29 May 1998
*/
-extern void skipjack_forwards __P((u_int8_t *plain, u_int8_t *cipher, u_int8_t **key));
-extern void skipjack_backwards __P((u_int8_t *cipher, u_int8_t *plain, u_int8_t **key));
-extern void subkey_table_gen __P((u_int8_t *key, u_int8_t **key_tables));
+extern void skipjack_forwards(u_int8_t *plain, u_int8_t *cipher, u_int8_t **key);
+extern void skipjack_backwards(u_int8_t *cipher, u_int8_t *plain, u_int8_t **key);
+extern void subkey_table_gen(u_int8_t *key, u_int8_t **key_tables);