diff options
author | Anton Kling <anton@kling.gg> | 2024-12-15 01:30:24 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-15 01:30:24 +0100 |
commit | 19482e5ef5b6710b4b9a52edcb1bb39692336d7a (patch) | |
tree | 4b36953acd4ba6975a16ec57643267ac5f05b8bf /userland/libc/include/stdlib.h | |
parent | fd724fc40e527a87d4e521cd704283cdf10f51c4 (diff) |
libc: Add setenv/getenv
Diffstat (limited to 'userland/libc/include/stdlib.h')
-rw-r--r-- | userland/libc/include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/stdlib.h b/userland/libc/include/stdlib.h index a389e8c..2dcd447 100644 --- a/userland/libc/include/stdlib.h +++ b/userland/libc/include/stdlib.h @@ -35,4 +35,5 @@ int atoi(const char *str); char *realpath(const char *filename, char *resolvedname); long atol(const char *nptr); long long atoll(const char *nptr); +int setenv(const char *name, const char *value, int overwrite); #endif |