diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:53:56 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 06:31:36 +0900 |
commit | 4448c2cd5acd431722508d8b020c0f7b6163fae0 (patch) | |
tree | 682843dd0127b841e2b898e69ea59d1f4f0fcb62 | |
parent | 98d8a7b1245e737f5efc48d9c30dca830766b8ac (diff) |
ipc/ipc_kmsg.c: remove forward declarations
* ipc/ipc_kmsg.c (copyinmap, copyoutmap, ipc_msg_print): Remove forward declarations.
* ipc/ipc_kmsg.h (ipc_msg_print): Add prototype.
-rw-r--r-- | ipc/ipc_kmsg.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c index 3bdd6b0..0e43410 100644 --- a/ipc/ipc_kmsg.c +++ b/ipc/ipc_kmsg.c @@ -69,10 +69,6 @@ #include <ipc/ipc_print.h> #endif -extern int copyinmap(); -extern int copyoutmap(); -void ipc_msg_print(); /* forward */ - #define is_misaligned(x) ( ((vm_offset_t)(x)) & (sizeof(vm_offset_t)-1) ) #define ptr_align(x) \ ( ( ((vm_offset_t)(x)) + (sizeof(vm_offset_t)-1) ) & ~(sizeof(vm_offset_t)-1) ) |