1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

LibC/Shell: Add unsetenv(), and unset builtin calling it in Shell.

This commit is contained in:
Robin Burchell 2019-05-16 14:22:12 +02:00 committed by Andreas Kling
parent b2dd12daac
commit abb7455163
3 changed files with 45 additions and 2 deletions

View file

@ -16,6 +16,7 @@ void free(void*);
void* realloc(void *ptr, size_t);
char* getenv(const char* name);
int putenv(char*);
int unsetenv(char*);
int atoi(const char*);
long atol(const char*);
long long atoll(const char*);