diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:54:20 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-15 19:19:23 +0100 |
commit | be78a5c7937a31128a3624dcace9df23492866f9 (patch) | |
tree | 18fe5f79b66f47aef9658d788fea84ef425d8127 /device/net_io.c | |
parent | 6ff7e82fab67f23f0aa4caa18b886ce03c060f4d (diff) |
Declare void argument lists
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 b3ec292..4c03f8c 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; |