diff options
author | Anton Kling <anton@kling.gg> | 2024-04-18 18:22:00 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-18 18:22:20 +0200 |
commit | a8959b3da1b160c84da6ead6f12188b1824d76e6 (patch) | |
tree | 6f8995144d9fd184b2905ae07da94565c5b2ffe7 /userland/libc/tb/sv.c | |
parent | 5606d715128edaf1830c895fd3619f1f1af67d56 (diff) |
LibC/Kernel: Move lseek/seek to kernel
Diffstat (limited to 'userland/libc/tb/sv.c')
-rw-r--r-- | userland/libc/tb/sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/tb/sv.c b/userland/libc/tb/sv.c index ad0a61c..45eb0d9 100644 --- a/userland/libc/tb/sv.c +++ b/userland/libc/tb/sv.c @@ -1,8 +1,8 @@ #include <ctype.h> +#include <math.h> #include <stdlib.h> #include <string.h> #include <tb/sv.h> -#include <math.h> char *SV_TO_C(struct sv s) { char *c_string = malloc(s.length + 1); |