summaryrefslogtreecommitdiff
path: root/kernel/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls.c')
-rw-r--r--kernel/syscalls.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/syscalls.c b/kernel/syscalls.c
index 6bd51d1..1d63ba4 100644
--- a/kernel/syscalls.c
+++ b/kernel/syscalls.c
@@ -4,7 +4,6 @@
#include "lib/logger/log.h"
#include "fs/fs.h"
#include "fs/ext2.h"
-#include "kernel/console.h"
#include "kernel/kernel.h"
#include "kernel/config.h"
#include "terminal/vt52.h"
@@ -84,7 +83,7 @@ int syscall_read(int file, char *buf, int len)
{
if(l>0)
{
- console_del_char();
+ //console_del_char();
buf--;
l--;
}
@@ -94,7 +93,7 @@ int syscall_read(int file, char *buf, int len)
*buf=c;
buf++;
l++;
- if(c!=0x04)console_put_char_white(c);
+ //if(c!=0x04)console_put_char_white(c);
if(c=='\n')return l;
if(c==0x04)
{