Avoid compilation warning from MSVC

Signed-off-by: Tor Lillqvist <tml@iki.fi>
This commit is contained in:
Haakon Sporsheim 2010-01-05 11:28:43 +02:00 committed by Tor Lillqvist
parent 84e791e580
commit bd6dce6046

View File

@ -287,7 +287,7 @@ void g_atexit (GVoidFunc func);
* wants the function to be called when it *itself* exits (or is
* detached, in case the caller, too, is a DLL).
*/
#if defined(__MINGW_H) && !defined(_STDLIB_H_)
#if (defined(__MINGW_H) && !defined(_STDLIB_H_)) || (defined(_MSC_VER) && !defined(_INC_STDLIB))
int atexit (void (*)(void));
#endif
#define g_atexit(func) atexit(func)