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:
parent
b2dd12daac
commit
abb7455163
3 changed files with 45 additions and 2 deletions
|
@ -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*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue