Removed the 'setenv' function of the Third Party Windows platform.
[platform/core/uifw/dali-adaptor.git] / third-party / windows-platform / environment.cpp
index d6dab55..f218e20 100644 (file)
@@ -3,15 +3,6 @@
 
 using namespace std;
 
-int setenv( const char *__name, const char *__value, int __replace )
-{
-  string value = __name;
-  value += "=";
-  value += __value;
-
-  return putenv( value.c_str() );
-}
-
 const char* app_get_data_path()
 {
   static std::string envValue = "";