Added inline function type

This commit is contained in:
Justin Ethier 2017-04-04 08:09:30 +00:00
parent 10fb038c37
commit 4f724b6eaf

View file

@ -517,6 +517,9 @@ typedef void (*function_type) ();
/** Variable-argument function type */
typedef void (*function_type_va) (int, object, object, object, ...);
/** Non-CPS function type */
typedef object (*inline_function_type) ();
/**
* @brief C-variable integration type - wrapper around a Cyclone object pointer
*/