kernel: add kern_status_string()

This commit is contained in:
2023-04-09 16:38:31 +01:00
parent 80f5e0483c
commit 981a5f2a0d
2 changed files with 25 additions and 0 deletions

View File

@@ -11,4 +11,6 @@ typedef unsigned int kern_status_t;
#define KERN_NO_MEMORY (5)
#define KERN_NO_ENTRY (6)
extern const char *kern_status_string(kern_status_t status);
#endif