From 8015e7817b505d15845c33f13c24ad55c561c8df Mon Sep 17 00:00:00 2001 From: David Höppner <0xffea@gmail.com> Date: Tue, 1 Jan 2013 09:12:37 +0000 Subject: Fix compilation warning implicit function declaration kdbprintf When kernel debugger support is requested ipc and vm need the prototype for the debugger function kdbprintf. * ddb/db_output.h: Add prototype for kdbprintf. * ipc/ipc_object.c: Add include file ddb/db_output.h * ipc/ipc_port.c: Likewise. * ipc/ipc_pset.c: Likewise. * vm/vm_map.c: Likewise. * vm/vm_object.c: Likewise. * vm/vm_resident.c: Likewise. --- vm/vm_object.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vm/vm_object.c') diff --git a/vm/vm_object.c b/vm/vm_object.c index 7eae3d7..d83c39f 100644 --- a/vm/vm_object.c +++ b/vm/vm_object.c @@ -55,6 +55,10 @@ #include #include +#if MACH_KDB +#include +#endif /* MACH_KDB */ + void memory_object_release( ipc_port_t pager, -- cgit v1.2.3