diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-19 20:43:54 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-20 00:26:27 +0100 |
commit | 549984f6b3b5ec146edcb03d86e637eff9956bd2 (patch) | |
tree | 5c082377d5f22bafbaae71408062ba2aaef18c5d /device/ds_routines.c | |
parent | f533e173fccb40aac5c3e7f4f2277f3cdec5d029 (diff) | |
download | gnumach-549984f6b3b5ec146edcb03d86e637eff9956bd2.tar.gz gnumach-549984f6b3b5ec146edcb03d86e637eff9956bd2.tar.bz2 gnumach-549984f6b3b5ec146edcb03d86e637eff9956bd2.zip |
Declare void argument lists (part 2)
Declare void argument lists that were not declared in the first
part of this patch and
* kern/sched_prim.h (recompute_priorities): Fix prototype.
* kern/startup.c (setup_main) (recompute_priorities): Fix call.
Diffstat (limited to 'device/ds_routines.c')
-rw-r--r-- | device/ds_routines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/ds_routines.c b/device/ds_routines.c index c99818b5..82b52528 100644 --- a/device/ds_routines.c +++ b/device/ds_routines.c @@ -99,7 +99,7 @@ extern struct device_emulation_ops linux_block_emulation_ops; #ifdef CONFIG_INET extern struct device_emulation_ops linux_net_emulation_ops; -extern void free_skbuffs (); +extern void free_skbuffs (void); #ifdef CONFIG_PCMCIA extern struct device_emulation_ops linux_pcmcia_emulation_ops; #endif /* CONFIG_PCMCIA */ |