mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-30 12:43:41 +01:00
9906261e23
Fix some warnings. Rename panic_ask to log_technical_bug.
26 lines
397 B
C
26 lines
397 B
C
/*
|
|
* posix_additions.h
|
|
*
|
|
* Created on: Feb 5, 2021
|
|
* Author: jief
|
|
*/
|
|
|
|
#ifndef PLATFORM_POSIX_POSIX_ADDITIONS_H_
|
|
#define PLATFORM_POSIX_POSIX_ADDITIONS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <Uefi/UefiBaseType.h>
|
|
|
|
const char* efiStrError(EFI_STATUS errnum);
|
|
const char* strguid(EFI_GUID* guid);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PLATFORM_POSIX_POSIX_ADDITIONS_H_ */
|