diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:54:14 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 06:49:22 +0900 |
commit | 716beea2840054c8b64f5436379c949a9a43c6cc (patch) | |
tree | 36f68c9ee6bb406cefba161a13463edc2c689fc7 /vm/vm_map.c | |
parent | 65e3849ec757c8764ef0549c8e494230155312d7 (diff) | |
download | gnumach-716beea2840054c8b64f5436379c949a9a43c6cc.tar.gz gnumach-716beea2840054c8b64f5436379c949a9a43c6cc.tar.bz2 gnumach-716beea2840054c8b64f5436379c949a9a43c6cc.zip |
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.c')
-rw-r--r-- | vm/vm_map.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 6e4544a3..914741ec 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -1031,14 +1031,12 @@ kern_return_t vm_map_enter( * the specified address; if necessary, * it splits the entry into two. */ -void _vm_map_clip_start(); #define vm_map_clip_start(map, entry, startaddr) \ MACRO_BEGIN \ if ((startaddr) > (entry)->vme_start) \ _vm_map_clip_start(&(map)->hdr,(entry),(startaddr)); \ MACRO_END -void _vm_map_copy_clip_start(); #define vm_map_copy_clip_start(copy, entry, startaddr) \ MACRO_BEGIN \ if ((startaddr) > (entry)->vme_start) \ @@ -1086,14 +1084,12 @@ void _vm_map_clip_start(map_header, entry, start) * the specified address; if necessary, * it splits the entry into two. */ -void _vm_map_clip_end(); #define vm_map_clip_end(map, entry, endaddr) \ MACRO_BEGIN \ if ((endaddr) < (entry)->vme_end) \ _vm_map_clip_end(&(map)->hdr,(entry),(endaddr)); \ MACRO_END -void _vm_map_copy_clip_end(); #define vm_map_copy_clip_end(copy, entry, endaddr) \ MACRO_BEGIN \ if ((endaddr) < (entry)->vme_end) \ |