diff options
Diffstat (limited to 'include/console.h')
-rw-r--r-- | include/console.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/console.h b/include/console.h index d59e3b4f..e9cf2858 100644 --- a/include/console.h +++ b/include/console.h @@ -88,4 +88,9 @@ extern UINT8 verbose; __dprinta_ret; \ }) +extern EFI_STATUS print_crypto_errors(EFI_STATUS rc, char *file, const char *func, int line); +#define crypterr(rc) print_crypto_errors((rc), __FILE__, __func__, __LINE__) + +extern VOID msleep(unsigned long msecs); + #endif /* _SHIM_LIB_CONSOLE_H */ |