summaryrefslogtreecommitdiff
path: root/userspace/foolshell.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-18 09:20:01 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-18 09:20:01 +0200
commita6184be79e3918764d5e683796afbd8e8ccba018 (patch)
tree870a5506efad410c89524bbeb740fb44974bf1da /userspace/foolshell.c
parentfe79552d9fcfd60d8c2bb828c6b93cf471ef7b75 (diff)
fifo through ringbuffer(stdin) and vt52(stdout) finally working!
Diffstat (limited to 'userspace/foolshell.c')
-rw-r--r--userspace/foolshell.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/userspace/foolshell.c b/userspace/foolshell.c
index 84d24b0..8496b05 100644
--- a/userspace/foolshell.c
+++ b/userspace/foolshell.c
@@ -45,14 +45,6 @@ int main(int argc, char **argv)
if(!silent)hello();
char *buf=malloc(256);
- // printf("malloc returned: 0x%08X\n",buf);
- //
- while(1)
- {
- fgets(buf,2,stdin);
- buf[1]=0;
- puts(buf);
- }
while(1)