diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-06-25 20:18:08 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-06-25 20:18:08 -0500 |
| commit | debb3b9a9c2cab0791396f008af7021968121001 (patch) | |
| tree | e864c0f65eaf927a9ba74046beb5dc423144fcf6 /std/stdlib.c | |
| parent | 0de05c7033940966eac811557c3eb85f1ff4e21b (diff) | |
| download | sloth-debb3b9a9c2cab0791396f008af7021968121001.tar.gz | |
stdlib
Diffstat (limited to 'std/stdlib.c')
| -rw-r--r-- | std/stdlib.c | 2 |
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); } |
