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/conf.h | |
parent | f533e173fccb40aac5c3e7f4f2277f3cdec5d029 (diff) |
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/conf.h')
-rw-r--r-- | device/conf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/device/conf.h b/device/conf.h index 8aacc86..a0d5010 100644 --- a/device/conf.h +++ b/device/conf.h @@ -58,9 +58,9 @@ typedef struct dev_ops *dev_ops_t; /* * Routines for null entries. */ -extern int nulldev(); /* no operation - OK */ -extern int nodev(); /* no operation - error */ -extern vm_offset_t nomap(); /* no operation - error */ +extern int nulldev(void); /* no operation - OK */ +extern int nodev(void); /* no operation - error */ +extern vm_offset_t nomap(void); /* no operation - error */ /* * Flavor constants for d_dev_info routine |