From 35a22bcbf70bf14b362c3d369bbcb799a6891fc8 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Sun, 18 Sep 2016 17:35:24 +0000 Subject: [PATCH] Add double-inclusion protection. Sponsored by: The FreeBSD Foundation MFC after: 1 week --- sys/boot/efi/include/efilib.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/boot/efi/include/efilib.h b/sys/boot/efi/include/efilib.h index 46c57d5ce746..61fcf36b5f6b 100644 --- a/sys/boot/efi/include/efilib.h +++ b/sys/boot/efi/include/efilib.h @@ -27,6 +27,9 @@ * $FreeBSD$ */ +#ifndef _LOADER_EFILIB_H +#define _LOADER_EFILIB_H + #include extern EFI_HANDLE IH; @@ -61,3 +64,5 @@ void efi_time_fini(void); EFI_STATUS main(int argc, CHAR16 *argv[]); void exit(EFI_STATUS status); void delay(int usecs); + +#endif