diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-02-04 07:23:26 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-02-04 07:23:26 +0000 |
commit | d647a44b39713f7469bf6afb04294e8516f8bfe9 (patch) | |
tree | 05d4777b3c68d8b8d80171ca7b037c0f88ab7a68 | |
parent | c73e7cfea23a9ce1013799284782cbcf471daa83 (diff) |
missing function prototype
-rw-r--r-- | usr.sbin/vmd/loadfile_elf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/vmd/loadfile_elf.c b/usr.sbin/vmd/loadfile_elf.c index 81c00cfcca2..2f7e0462668 100644 --- a/usr.sbin/vmd/loadfile_elf.c +++ b/usr.sbin/vmd/loadfile_elf.c @@ -1,5 +1,5 @@ /* $NetBSD: loadfile.c,v 1.10 2000/12/03 02:53:04 tsutsui Exp $ */ -/* $OpenBSD: loadfile_elf.c,v 1.23 2017/01/17 21:51:01 krw Exp $ */ +/* $OpenBSD: loadfile_elf.c,v 1.24 2017/02/04 07:23:25 mlarkin Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -124,6 +124,7 @@ static size_t create_bios_memmap(struct vm_create_params *, bios_memmap_t *); static uint32_t push_bootargs(bios_memmap_t *, size_t); static size_t push_stack(uint32_t, uint32_t, uint32_t, uint32_t); static void push_gdt(void); +static void push_pt(void); static size_t mread(FILE *, paddr_t, size_t); static void marc4random_buf(paddr_t, int); static void mbzero(paddr_t, int); |