/* typedefish.c generated by valac 0.15.0, the Vala compiler * generated from typedefish.vala, do not modify */ /* defining an alias for a basic type (equivalent to typedef int Integer in C)*/ #include #include #include void bar (int32_t x); GType foo_get_type (void) { static volatile gsize foo_type_id__volatile = 0; if (g_once_init_enter (&foo_type_id__volatile)) { GType foo_type_id; foo_type_id = g_boxed_type_register_static ("int32_t", (GBoxedCopyFunc) foo_dup, (GBoxedFreeFunc) foo_free); g_once_init_leave (&foo_type_id__volatile, foo_type_id); } return foo_type_id__volatile; } void bar (int32_t x) { int32_t _tmp0_; gint32 y; _tmp0_ = x; y = (gint32) (_tmp0_ + 3); }