update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / fdopen.c
index 2427466..d543e25 100644 (file)
@@ -1,8 +1,9 @@
-#include <crtdll/stdio.h>
-#include <crtdll/internal/file.h>
+#include <msvcrt/stdio.h>
+#include <msvcrt/internal/file.h>
 
 FILE * __alloc_file(void);
 
+
 FILE *_fdopen(int handle, char *mode)
 {
   FILE *file;
@@ -48,15 +49,6 @@ FILE *_fdopen(int handle, char *mode)
     file->_flag = _IOWRT;
 
   file->_base = file->_ptr = NULL;   
+
   return file;
 }        
-                       
-                        
-                        
-                        
-                       
-                       
-                      
-                      
-                      
-