diff options
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 193146c..71de048 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -34,6 +34,7 @@ * Virtual memory mapping module. */ +#include <printf.h> #include <mach/kern_return.h> #include <mach/port.h> #include <mach/vm_attributes.h> @@ -4688,7 +4689,6 @@ void vm_map_print(map) register vm_map_t map; { register vm_map_entry_t entry; - extern int indent; iprintf("Task map 0x%X: pmap=0x%X,", (vm_offset_t) map, (vm_offset_t) (map->pmap)); @@ -4756,7 +4756,6 @@ void vm_map_print(map) void vm_map_copy_print(copy) vm_map_copy_t copy; { - extern int indent; int i, npages; printf("copy object 0x%x\n", copy); |