diff options
Diffstat (limited to 'device/net_io.c')
-rw-r--r-- | device/net_io.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/device/net_io.c b/device/net_io.c index b3ec2926..4c03f8ce 100644 --- a/device/net_io.c +++ b/device/net_io.c @@ -524,7 +524,7 @@ boolean_t net_deliver(nonblocking) * net_kmsg_get will do a wakeup. */ -void net_ast() +void net_ast(void) { spl_t s; @@ -553,7 +553,7 @@ void net_ast() (void) splx(s); } -void net_thread_continue() +void net_thread_continue(void) { for (;;) { spl_t s; @@ -579,7 +579,7 @@ void net_thread_continue() } } -void net_thread() +void net_thread(void) { spl_t s; @@ -1492,7 +1492,7 @@ net_write(ifp, start, ior) * Initialize the whole package. */ void -net_io_init() +net_io_init(void) { vm_size_t size; |