diff options
-rw-r--r-- | compat/setenv.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/setenv.hpp b/compat/setenv.hpp index 5dff666a..1fc8486c 100644 --- a/compat/setenv.hpp +++ b/compat/setenv.hpp @@ -9,5 +9,5 @@ int unsetenv(const char* name); } // namespace floormat #else #include <cstdlib> -namespace floormat { using std::getenv; using std::setenv; using std::unsetenv; } +namespace floormat { using std::getenv; using ::setenv; using ::unsetenv; } #endif |