summaryrefslogtreecommitdiff
path: root/userland/libc/include/stdlib.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-12-15 01:30:24 +0100
committerAnton Kling <anton@kling.gg>2024-12-15 01:30:24 +0100
commit19482e5ef5b6710b4b9a52edcb1bb39692336d7a (patch)
tree4b36953acd4ba6975a16ec57643267ac5f05b8bf /userland/libc/include/stdlib.h
parentfd724fc40e527a87d4e521cd704283cdf10f51c4 (diff)
libc: Add setenv/getenv
Diffstat (limited to 'userland/libc/include/stdlib.h')
-rw-r--r--userland/libc/include/stdlib.h1
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