summaryrefslogtreecommitdiff
path: root/vm/vm_map.h
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-29 22:54:14 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-05 06:49:22 +0900
commit716beea2840054c8b64f5436379c949a9a43c6cc (patch)
tree36f68c9ee6bb406cefba161a13463edc2c689fc7 /vm/vm_map.h
parent65e3849ec757c8764ef0549c8e494230155312d7 (diff)
vm/vm_map.c: remove forward declarations
* vm/vm_map.c (_vm_map_clip_start, _vm_map_copy_clip_start, _vm_map_clip_end, _vm_map_copy_clip_end): Remove forward declarations. * vm/vm_map.h (_vm_map_clip_end): Correct prototype.
Diffstat (limited to 'vm/vm_map.h')
-rw-r--r--vm/vm_map.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/vm/vm_map.h b/vm/vm_map.h
index 19317ac..b6bc177 100644
--- a/vm/vm_map.h
+++ b/vm/vm_map.h
@@ -555,6 +555,9 @@ extern void _vm_map_clip_start(
* the specified address; if necessary,
* it splits the entry into two.
*/
-void _vm_map_clip_end();
+void _vm_map_clip_end(
+ struct vm_map_header *map_header,
+ vm_map_entry_t entry,
+ vm_offset_t end);
#endif /* _VM_VM_MAP_H_ */