From 894bc2481af492e85dc5718b847937868e475379 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 6 Dec 2013 16:29:47 +0100 Subject: vm/vm_pageout.c: remove forward declarations * vm/vm_pageout.c (vm_pageout_continue, vm_pageout_scan_continue): Remove forward declarations. * vm/vm_pageout.h (vm_pageout_continue, vm_pageout_scan_continue): Add prototypes. --- vm/vm_pageout.c | 3 --- vm/vm_pageout.h | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/vm/vm_pageout.c b/vm/vm_pageout.c index 38195ad..46ba56b 100644 --- a/vm/vm_pageout.c +++ b/vm/vm_pageout.c @@ -159,9 +159,6 @@ #define VM_PAGEOUT_RESERVED_REALLY(reserve) ((reserve) - 40) #endif /* VM_PAGEOUT_RESERVED_REALLY */ -extern void vm_pageout_continue(); -extern void vm_pageout_scan_continue(); - unsigned int vm_pageout_reserved_internal = 0; unsigned int vm_pageout_reserved_really = 0; diff --git a/vm/vm_pageout.h b/vm/vm_pageout.h index 90e45a7..7e3e4e4 100644 --- a/vm/vm_pageout.h +++ b/vm/vm_pageout.h @@ -46,4 +46,8 @@ extern void vm_pageout_page(vm_page_t, boolean_t, boolean_t); extern void vm_pageout(void); +extern void vm_pageout_continue(void); + +extern void vm_pageout_scan_continue(void); + #endif /* _VM_VM_PAGEOUT_H_ */ -- cgit v1.2.3