diff options
Diffstat (limited to 'Simulator/Flowsheet_07dly.c')
-rw-r--r-- | Simulator/Flowsheet_07dly.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Simulator/Flowsheet_07dly.c b/Simulator/Flowsheet_07dly.c new file mode 100644 index 0000000..76bf398 --- /dev/null +++ b/Simulator/Flowsheet_07dly.c @@ -0,0 +1,19 @@ +/* Delay */ +#include "Flowsheet_model.h" +#if defined(__cplusplus) +extern "C" { +#endif + +int Flowsheet_function_storeDelayed(DATA *data, threadData_t *threadData) +{ + TRACE_PUSH + + + TRACE_POP + return 0; +} + +#if defined(__cplusplus) +} +#endif + |