update for HEAD-2003021201
[reactos.git] / lib / crtdll / misc / initterm.c
index c834b61..c71da89 100644 (file)
@@ -1,14 +1,10 @@
-#include <crtdll/stdlib.h>
+#include <msvcrt/stdlib.h>
 
 
-void  _initterm (
-        void (* fStart[])(void),
-        void (* fEnd[])(void)
-        )
+void _initterm(void (*fStart[])(void), void (*fEnd[])(void))
 {
        int i = 0;
 
-
        if ( fStart == NULL || fEnd == NULL )
                return;
 
@@ -19,13 +15,11 @@ void  _initterm (
                i++;
        }
 }
+
+
 typedef int (* _onexit_t)(void);
 
-_onexit_t __dllonexit (
-        _onexit_t func,
-       void (** fStart[])(void),
-        void (** fEnd[])(void)
-        )
+_onexit_t __dllonexit(_onexit_t func, void (** fStart[])(void),        void (** fEnd[])(void))
 {
 }