From 982dc8585e4c5d4995a724a327299dcfb53ff44f Mon Sep 17 00:00:00 2001 From: kib Date: Sun, 25 Sep 2016 17:55:53 +0000 Subject: MFC r305941: Add double-inclusion protection. MFC r305947: Add comment for the closing guard. --- sys/boot/efi/include/efilib.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/boot') diff --git a/sys/boot/efi/include/efilib.h b/sys/boot/efi/include/efilib.h index 46c57d5..09ccc2f 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 /* _LOADER_EFILIB_H */ -- cgit v1.1