Export two private methods to avoid an compiler warning

svn path=/trunk/; revision=810
This commit is contained in:
Johan Dahlin 2008-10-24 11:32:31 +00:00
parent 8d06e5c8e7
commit b97c26b3ee
2 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,6 @@
#include "girmodule.h"
#include "girnode.h"
void _g_irnode_init_stats (void);
void _g_irnode_dump_stats (void);
#define ALIGN_VALUE(this, boundary) \
(( ((unsigned long)(this)) + (((unsigned long)(boundary)) -1)) & (~(((unsigned long)(boundary))-1)))

View File

@ -46,6 +46,9 @@ void g_ir_module_free (GIrModule *module);
GTypelib * g_ir_module_build_typelib (GIrModule *module,
GList *modules);
void _g_irnode_init_stats (void);
void _g_irnode_dump_stats (void);
G_END_DECLS
#endif /* __G_IR_MODULE_H__ */