From be78a5c7937a31128a3624dcace9df23492866f9 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 29 Nov 2013 22:54:20 +0100 Subject: Declare void argument lists --- device/net_io.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'device/net_io.c') 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; -- cgit v1.2.3