update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdlib / putenv.c
index cc91ccc..0d43f8c 100644 (file)
@@ -1,11 +1,10 @@
 #include <windows.h>
-#include <crtdll/stdlib.h>
-#include <crtdll/string.h>
+#include <msvcrt/stdlib.h>
+#include <msvcrt/string.h>
 
 
 
-int
-putenv(const char *val)
+int putenv(const char *val)
 {
   
   char buffer[1024];
@@ -22,9 +21,3 @@ putenv(const char *val)
 
   return SetEnvironmentVariableA(buffer,epos+1);
 }
-
-  
-  
-
-  
-