From 58afe72aa3e7d699c47b9a44a2c4b60f28ac80d0 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 30 Dec 2008 20:48:35 +0000 Subject: [PATCH] comment out atexit svn path=/branches/ros-amd64-bringup/; revision=38477 --- reactos/lib/3rdparty/mingw/atonexit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/lib/3rdparty/mingw/atonexit.c b/reactos/lib/3rdparty/mingw/atonexit.c index 1affa3b50b8..849ddc46a6a 100644 --- a/reactos/lib/3rdparty/mingw/atonexit.c +++ b/reactos/lib/3rdparty/mingw/atonexit.c @@ -20,6 +20,7 @@ _PVFV *__onexitend; extern _CRTIMP _onexit_t __dllonexit (_onexit_t, _PVFV**, _PVFV**); extern _onexit_t (__cdecl *_imp___onexit) (_onexit_t func); +#if 0 /* Choose a different name to prevent name conflicts. The CRT one works fine. */ _onexit_t __cdecl mingw_onexit(_onexit_t func) { @@ -48,3 +49,4 @@ atexit (_PVFV func) { return (mingw_onexit((_onexit_t)func) == NULL) ? -1 : 0; } +#endif