Add double-inclusion protection.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2016-09-18 17:35:24 +00:00
parent 0d9cbb874c
commit 35a22bcbf7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305941

View File

@ -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