diff options
Diffstat (limited to 'LibC/stdlib.cpp')
-rw-r--r-- | LibC/stdlib.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/LibC/stdlib.cpp b/LibC/stdlib.cpp index f9e425d6dd..d7e12e9276 100644 --- a/LibC/stdlib.cpp +++ b/LibC/stdlib.cpp @@ -201,6 +201,11 @@ char* getenv(const char* name) return nullptr; } +int putenv(char*) +{ + assert(false); +} + double atof(const char*) { assert(false); |