summaryrefslogtreecommitdiff
path: root/ipc
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-29 22:53:56 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-05 06:31:36 +0900
commit4448c2cd5acd431722508d8b020c0f7b6163fae0 (patch)
tree682843dd0127b841e2b898e69ea59d1f4f0fcb62 /ipc
parent98d8a7b1245e737f5efc48d9c30dca830766b8ac (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.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_kmsg.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c
index 3bdd6b00..0e434105 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) )