From 19482e5ef5b6710b4b9a52edcb1bb39692336d7a Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 15 Dec 2024 01:30:24 +0100 Subject: libc: Add setenv/getenv --- userland/libc/include/stdlib.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/include/stdlib.h') 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 -- cgit v1.2.3