* src/vm/jit/jit.c: Moved to .cpp.
[cacao.git] / src / vm / jit / optimizing / ifconv.h
index f10ced797fbf7b59ad0531288a18b9ef4702a5fa..92c32f6c4dff5396af37e4213a1002f72903ec25 100644 (file)
 #define _IFCONV_H
 
 #include "config.h"
-#include "vm/types.h"
 
-#include "vm/jit/codegen-common.h"
-#include "vm/jit/jit.h"
-#include "vm/jit/reg.h"
+#include <stdbool.h>
+
+#include "vm/jit/jit.hpp"
 
 
 /* function prototypes ********************************************************/
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 bool ifconv_static(jitdata *jd);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _IFCONV_H */