summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--giscanner/codegen.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/giscanner/codegen.py b/giscanner/codegen.py
index a9fa375c..e9ed9415 100644
--- a/giscanner/codegen.py
+++ b/giscanner/codegen.py
@@ -51,7 +51,6 @@ class CCodeGenerator(object):
def _write_prelude(self, out, func):
out.write("""
-_GI_TEST_EXTERN
%s
%s (""" % (self._typecontainer_to_ctype(func.retval), func.symbol))
l = len(func.parameters)
@@ -111,18 +110,10 @@ _GI_TEST_EXTERN
#define __%s_H__
#include <glib-object.h>
-
-#include "../tests/gitestmacros.h"
-
""" % (nsupper, nsupper))
self.out_c.write(warning)
- self.out_c.write("""
-#include "config.h"
-
-#include "%s"
-
-""" % (self.out_h_filename, ))
+ self.out_c.write("""#include "%s"\n\n""" % (self.out_h_filename, ))
def _codegen_end(self):
self.out_h.write("""#endif\n""")