diff options
author | ngie <ngie@FreeBSD.org> | 2017-05-22 06:26:22 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-05-22 06:26:22 +0000 |
commit | 58fe5c27ce914e207efbbcefb351003ee5575bdc (patch) | |
tree | 919bcafbbab8570f441f62f6236a2f4213d72de3 | |
parent | fa215af663dd98e01c008ff5571a8ec8ecb189d6 (diff) | |
download | FreeBSD-src-58fe5c27ce914e207efbbcefb351003ee5575bdc.zip FreeBSD-src-58fe5c27ce914e207efbbcefb351003ee5575bdc.tar.gz |
MFC r316103:
Remove redundant declarations
They're already defined in libstand.h
-rw-r--r-- | sys/boot/efi/boot1/boot1.c | 1 | ||||
-rw-r--r-- | sys/boot/efi/boot1/boot_module.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/sys/boot/efi/boot1/boot1.c b/sys/boot/efi/boot1/boot1.c index 92eb345..d6293fe 100644 --- a/sys/boot/efi/boot1/boot1.c +++ b/sys/boot/efi/boot1/boot1.c @@ -47,7 +47,6 @@ static const boot_module_t *boot_modules[] = /* The initial number of handles used to query EFI for partitions. */ #define NUM_HANDLES_INIT 24 -void putchar(int c); EFI_STATUS efi_main(EFI_HANDLE Ximage, EFI_SYSTEM_TABLE* Xsystab); EFI_SYSTEM_TABLE *systab; diff --git a/sys/boot/efi/boot1/boot_module.h b/sys/boot/efi/boot1/boot_module.h index 3a6b827..1917da2 100644 --- a/sys/boot/efi/boot1/boot_module.h +++ b/sys/boot/efi/boot1/boot_module.h @@ -105,8 +105,6 @@ extern const boot_module_t zfs_module; /* Functions available to modules. */ extern void add_device(dev_info_t **devinfop, dev_info_t *devinfo); -extern void panic(const char *fmt, ...) __dead2; -extern int printf(const char *fmt, ...); extern int vsnprintf(char *str, size_t sz, const char *fmt, va_list ap); extern EFI_SYSTEM_TABLE *systab; |