aboutsummaryrefslogtreecommitdiff
path: root/std/stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'std/stdlib.c')
-rw-r--r--std/stdlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/stdlib.c b/std/stdlib.c
index f8df9e8..d27b36f 100644
--- a/std/stdlib.c
+++ b/std/stdlib.c
@@ -4,7 +4,7 @@ void wait(long long x) {
sleep(x);
}
-int len(char *str) {
+int slen(char *str) {
return strlen(str);
}