diff options
Diffstat (limited to 'src/init')
-rw-r--r-- | src/init/stdlib.c | 17 | ||||
-rw-r--r-- | src/init/stdlib.h | 2 |
2 files changed, 0 insertions, 19 deletions
diff --git a/src/init/stdlib.c b/src/init/stdlib.c index c83440f..18da3da 100644 --- a/src/init/stdlib.c +++ b/src/init/stdlib.c @@ -5,23 +5,6 @@ int __tty_fd; -int strcmp(const char *s1, const char *s2) { - while (*s1) { - if (*s1 != *s2) { - if (*s1 < *s2) return -1; - else return 1; - } - s1++; s2++; - } - return 0; -} - -size_t strlen(const char *s) { - size_t c = 0; - while (*s++) c++; - return c; -} - int printf(const char *fmt, ...) { const char *seg = fmt; // beginning of the current segment int total = 0; diff --git a/src/init/stdlib.h b/src/init/stdlib.h index af0788b..17ec0b9 100644 --- a/src/init/stdlib.h +++ b/src/init/stdlib.h @@ -4,6 +4,4 @@ extern int __tty_fd; -int strcmp(const char *s1, const char *s2); -size_t strlen(const char *s); int printf(const char *fmt, ...); |