The C return type (something or void)

Property definitions

nitc $ SeparateRuntimeFunction :: c_ret=
	# The C return type (something or `void`)
	var c_ret: String is lazy do
		var ret = called_signature.return_mtype
		if ret != null then
			return ret.ctype
		else
			return "void"
		end
	end
src/compiler/separate_compiler.nit:2493,2--2501,4