[glib/glib-2-22] Avoid gcc warning about redeclaration of atexit() on MinGW



commit 7a3ce3f5e057f9424d7e9378114f8ffecfb1a612
Author: Tor Lillqvist <tml iki fi>
Date:   Tue Nov 10 01:37:13 2009 +0200

    Avoid gcc warning about redeclaration of atexit() on MinGW

 glib/gutils.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/glib/gutils.h b/glib/gutils.h
index 149d496..46c372c 100644
--- a/glib/gutils.h
+++ b/glib/gutils.h
@@ -287,7 +287,9 @@ 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_)
 int atexit (void (*)(void));
+#endif
 #define g_atexit(func) atexit(func)
 #endif
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]