From 892afc02ed5f907a7753f899b7c9c8b216433286 Mon Sep 17 00:00:00 2001 From: sbosse Date: Thu, 17 Oct 2024 23:43:13 +0200 Subject: [PATCH] Thu 17 Oct 23:42:52 CEST 2024 --- include/library/errno.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/library/errno.h diff --git a/include/library/errno.h b/include/library/errno.h new file mode 100644 index 0000000..ba4bec3 --- /dev/null +++ b/include/library/errno.h @@ -0,0 +1,8 @@ +#ifndef ERRNO_H +#define ERRNO_H + +#include "kernel/error.h" + +const char *strerror( kernel_error_t err_code); + +#endif