From 4f724b6eafbf8eda7d77d863a3f6d2af957b83d2 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 4 Apr 2017 08:09:30 +0000 Subject: [PATCH] Added inline function type --- include/cyclone/types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/cyclone/types.h b/include/cyclone/types.h index 86ed9f9d..9f0f02a0 100644 --- a/include/cyclone/types.h +++ b/include/cyclone/types.h @@ -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 */