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_resident.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'vm/vm_resident.c') diff --git a/vm/vm_resident.c b/vm/vm_resident.c index 581a9c4..7cf4fb1 100644 --- a/vm/vm_resident.c +++ b/vm/vm_resident.c @@ -58,6 +58,11 @@ #include #endif +#if MACH_KDB +#include +#endif /* MACH_KDB */ + + /* * Associated with eacn page of user-allocatable memory is a * page structure. -- cgit v1.2.3