From: fennecdjay Date: Sat, 17 Feb 2024 05:06:05 +0000 (+0100) Subject: :art: boolify gwi_gack X-Git-Tag: nightly~69 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=ff384978c258a5f37fd7f72406d6e32ad1fd0912;p=gwion.git :art: boolify gwi_gack --- diff --git a/include/import/internals.h b/include/import/internals.h index 63f0b859..45bf1624 100644 --- a/include/import/internals.h +++ b/include/import/internals.h @@ -43,5 +43,5 @@ ANN Exp* make_exp(const Gwi gwi, const m_str type, const m_str name); ANN void gwi_reset(const Gwi gwi); ANN VM * gwi_vm(const Gwi); -ANN m_bool gwi_gack(const Gwi gwi, const Type type, const f_gack d); +ANN bool gwi_gack(const Gwi gwi, const Type type, const f_gack d); #endif diff --git a/src/import/import_special.c b/src/import/import_special.c index ca85ced4..1af03345 100644 --- a/src/import/import_special.c +++ b/src/import/import_special.c @@ -51,7 +51,7 @@ ANN bool mk_gack(MemPool p, const Type type, const f_gack d) { return true; } -ANN m_bool gwi_gack(const Gwi gwi, const Type type, const f_gack d) { +ANN bool gwi_gack(const Gwi gwi, const Type type, const f_gack d) { return mk_gack(gwi->gwion->mp, type, d); }