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