]> Nishi Git Mirror - gwion.git/commitdiff
:art: boolify gwi_gack
authorfennecdjay <fennecdjay@gmail.com>
Sat, 17 Feb 2024 05:06:05 +0000 (06:06 +0100)
committerfennecdjay <fennecdjay@gmail.com>
Sat, 17 Feb 2024 05:06:05 +0000 (06:06 +0100)
include/import/internals.h
src/import/import_special.c

index 63f0b85989e1a8995d877a34d7e36d487237f4d0..45bf1624c1a49124a711d77748ba24bcdaa21b42 100644 (file)
@@ -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
index ca85ced44889e82501e85ecdc2df14a4e7182dee..1af0334580f56dea67f6bfdb75cd431370a70143 100644 (file)
@@ -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);
 }