summaryrefslogtreecommitdiff
path: root/kern/console.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-02-24 06:45:44 +0100
committerRichard Braun <rbraun@sceen.net>2018-02-24 06:48:21 +0100
commit7dcf6715ffb3cc2f00f6327b896d16f173a1b082 (patch)
tree210570e98e074d7abade0d22c64e05b9c02435ba /kern/console.c
parentbe5b9d6ab9f7e7a81c367e4bb0823ba11f85940f (diff)
New errno.h standard header
Use standard errno codes. This change also adds strerror to string.h.
Diffstat (limited to 'kern/console.c')
-rw-r--r--kern/console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/console.c b/kern/console.c
index 0ed54b5e..a9a0f5d0 100644
--- a/kern/console.c
+++ b/kern/console.c
@@ -16,13 +16,13 @@
*/
#include <assert.h>
+#include <errno.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <kern/arg.h>
-#include <kern/error.h>
#include <kern/init.h>
#include <kern/console.h>
#include <kern/list.h>
@@ -76,7 +76,7 @@ console_process_ctrl_char(struct console *console, char c)
case CONSOLE_SCROLL_DOWN:
break;
default:
- return ERROR_INVAL;
+ return EINVAL;
}
console->ops->putc(console, c);