diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-25 20:41:46 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-27 00:00:50 +0100 |
commit | 84e0fb3f287864eca3a9322ef364b913f6a260bd (patch) | |
tree | 123333bce32a7d57c5112aa0d4c07b12821b6305 /vm/vm_init.c | |
parent | 63eefc08b5e762937118254ad0b82583cc38a2d2 (diff) | |
download | gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.gz gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.bz2 gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.zip |
Fix some warnings with -Wmissing-prototypes.
Marked some functions as static (private) as needed and added missing
includes.
This also revealed some dead code which was removed.
Note that -Wmissing-prototypes is not enabled here since there is a
bunch more warnings.
Message-Id: <Y6j72lWRL9rsYy4j@mars>
Diffstat (limited to 'vm/vm_init.c')
-rw-r--r-- | vm/vm_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/vm_init.c b/vm/vm_init.c index 23d5d46e..593af11b 100644 --- a/vm/vm_init.c +++ b/vm/vm_init.c @@ -38,6 +38,7 @@ #include <kern/slab.h> #include <kern/kalloc.h> #include <vm/vm_fault.h> +#include <vm/vm_init.h> #include <vm/vm_object.h> #include <vm/vm_map.h> #include <vm/vm_page.h> |