aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdio/readline.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/stdio/readline.c')
-rw-r--r--src/userspace/mlibc/stdio/readline.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/userspace/mlibc/stdio/readline.c b/src/userspace/mlibc/stdio/readline.c
index 68e8499..b59545b 100644
--- a/src/userspace/mlibc/stdio/readline.c
+++ b/src/userspace/mlibc/stdio/readline.c
@@ -3,12 +3,12 @@
char *readline()
{
- char *ret = malloc(256);
- char buf = 0;
- while (buf != '\n') {
- buf = getch();
- writec(buf);
- strcpy(ret, &buf);
- }
- return ret;
+ char *ret = malloc(256);
+ char buf = 0;
+ while (buf != '\n') {
+ buf = getch();
+ writec(buf);
+ strcpy(ret, &buf);
+ }
+ return ret;
} \ No newline at end of file