diff options
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/crypto.c | 4 | ||||
-rw-r--r-- | sys/crypto/crypto.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/crypto/crypto.c b/sys/crypto/crypto.c index d9fb8d7f5cb..443958727bb 100644 --- a/sys/crypto/crypto.c +++ b/sys/crypto/crypto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto.c,v 1.8 2000/06/18 03:07:11 angelos Exp $ */ +/* $OpenBSD: crypto.c,v 1.9 2000/06/18 03:08:56 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -49,8 +49,6 @@ int crypto_queue_max = CRYPTO_MAX_CACHED; struct cryptop *crp_req_queue = NULL; struct cryptop **crp_req_queue_tail = NULL; -int crypto_invoke(struct cryptop *); - /* * Create a new session. */ diff --git a/sys/crypto/crypto.h b/sys/crypto/crypto.h index 1389301a9e8..03718d1cca5 100644 --- a/sys/crypto/crypto.h +++ b/sys/crypto/crypto.h @@ -155,12 +155,13 @@ extern int crypto_register(u_int32_t, int, int (*)(struct cryptop *)); extern int crypto_unregister(u_int32_t, int); extern int32_t crypto_get_driverid(void); +extern void crypto_thread(void); +extern int crypto_invoke(struct cryptop *); struct mbuf; int mbuf2pages(struct mbuf *, int *, long *, int *, int, int *); extern struct cryptop *crypto_getreq(int); extern void crypto_freereq(struct cryptop *); -extern void crypto_thread(void); #endif /* _KERNEL */ #endif /* _CRYPTO_CRYPTO_H_ */ |