mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:57:45 +00:00
LibC: unsetenv() should take a const char*, not a char*.
This commit is contained in:
parent
5f597d0cb2
commit
29863d3815
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ void free(void*);
|
|||
void* realloc(void *ptr, size_t);
|
||||
char* getenv(const char* name);
|
||||
int putenv(char*);
|
||||
int unsetenv(char*);
|
||||
int unsetenv(const 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