diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-10 01:00:37 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-10 22:18:34 +0100 |
commit | 963b1794d7117064cee8ab5638b329db51dad854 (patch) | |
tree | d9b6d60289fdc3c134dce5e0edc1f58f820e5608 /ddb | |
parent | d5e5dd3401ea0d0475aa830c2171be5b8a72f4fa (diff) | |
download | gnumach-963b1794d7117064cee8ab5638b329db51dad854.tar.gz gnumach-963b1794d7117064cee8ab5638b329db51dad854.tar.bz2 gnumach-963b1794d7117064cee8ab5638b329db51dad854.zip |
Preemptively fix warnings that will be caused by -Wmissing-prototypes
Declared RPCs in ipc/mach_port.c and ddb/db_ext_symtab.c in their corresponding headers.
Ideally these should be used by mig instead of mig declaring its own
prototypes.
Message-Id: <Y7z/BQhmsBbRgxhe@jupiter.tail36e24.ts.net>
Diffstat (limited to 'ddb')
-rw-r--r-- | ddb/db_ext_symtab.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ddb/db_ext_symtab.c b/ddb/db_ext_symtab.c index e1bdfd8b..9c89fb95 100644 --- a/ddb/db_ext_symtab.c +++ b/ddb/db_ext_symtab.c @@ -35,6 +35,7 @@ #include <vm/vm_kern.h> #include <vm/vm_user.h> #include <kern/host.h> +#include <kern/mach_debug.h> #include <kern/task.h> #include <ddb/db_sym.h> |