diff options
author | Sebastian Wilhelmi <wilhelmi@ira.uka.de> | 2000-07-19 14:01:22 +0000 |
---|---|---|
committer | Sebastian Wilhelmi <wilhelmi@src.gnome.org> | 2000-07-19 14:01:22 +0000 |
commit | cb931f4980afdbb8c052dfcecd4fcf0799036176 (patch) | |
tree | 8eba44c1e2859b2b1c237f6157dadebfccf71faa /gmodule/gmodule.h | |
parent | 93b1001c10a3137ba415e3cefdbd3dc1967beac4 (diff) |
glibconfig.h and glib.h now include files outside of the extern "C" block.
2000-07-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, glib.h: glibconfig.h and glib.h now include files
outside of the extern "C" block. Makes some C++ compiler
happy. Reported by Denis Vakatov <vakatov@peony.nlm.nih.gov>.
* gmodule/gmodule.h: include glib.h before doing extern "C".
Makes some C++ compiler happy. Reported by Denis Vakatov
<vakatov@peony.nlm.nih.gov>.
Diffstat (limited to 'gmodule/gmodule.h')
-rw-r--r-- | gmodule/gmodule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmodule/gmodule.h b/gmodule/gmodule.h index f8b835548..c6c75763d 100644 --- a/gmodule/gmodule.h +++ b/gmodule/gmodule.h @@ -27,13 +27,13 @@ #ifndef __GMODULE_H__ #define __GMODULE_H__ +#include <glib.h> #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ extern const char *g_log_domain_gmodule; -#include <glib.h> /* exporting and importing functions, this is special cased |