diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/crypto/skipjack.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/crypto/skipjack.h')
-rw-r--r-- | sys/crypto/skipjack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/crypto/skipjack.h b/sys/crypto/skipjack.h index 9cde6be4b38..16bd63528a4 100644 --- a/sys/crypto/skipjack.h +++ b/sys/crypto/skipjack.h @@ -1,4 +1,4 @@ -/* $OpenBSD: skipjack.h,v 1.2 2001/05/15 02:40:35 deraadt Exp $ */ +/* $OpenBSD: skipjack.h,v 1.3 2002/03/14 01:26:51 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); |