Skip to content

Commit 47badeb

Browse files
committed
missing include
1 parent 0af7e73 commit 47badeb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

21-shell/kernel/kernel.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
#include "../cpu/isr.h"
22
#include "../drivers/screen.h"
33
#include "kernel.h"
4+
#include "../libc/string.h"
45

56
void main() {
67
isr_install();
78
irq_install();
89

910
kprint("Type something, it will go through the kernel\n"
1011
"Type END to halt the CPU\n> ");
11-
12-
// Do we need an infinite loop here?
1312
}
1413

1514
void user_input(char *input) {

0 commit comments

Comments
 (0)