diff options
author | kib <kib@FreeBSD.org> | 2016-09-25 17:55:53 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2016-09-25 17:55:53 +0000 |
commit | 982dc8585e4c5d4995a724a327299dcfb53ff44f (patch) | |
tree | ee749093cca0982544077c21615dec5776a2715e /sys/boot | |
parent | 7ed6c1bd4b4f838ddb1d2c41ab8a9fa8fa083832 (diff) | |
download | FreeBSD-src-982dc8585e4c5d4995a724a327299dcfb53ff44f.zip FreeBSD-src-982dc8585e4c5d4995a724a327299dcfb53ff44f.tar.gz |
MFC r305941:
Add double-inclusion protection.
MFC r305947:
Add comment for the closing guard.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/efi/include/efilib.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 <stand.h> 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 */ |