nitc :: MType :: ctype_extern
# C type outside of the compiler code and in boxes
fun ctype_extern: String do return "val*"
src/compiler/abstract_compiler.nit:2437,2--2438,42
redef fun ctype_extern: String
do
if mclass.kind == extern_kind then
return "void*"
else
return ctype
end
end
src/compiler/abstract_compiler.nit:2483,2--2490,4