%implements MATLABFcn "C"
%function BlockTypeSetup(block, system) void
%if !Accelerator && !(ISFIELD(system,"NoCode") && system.NoCode == "yes")
%assign errTxt = "Not yet supported by Simulink Coder"
%<LibBlockReportError(block, errTxt)>
%endif
%endfunction
%function BlockInstanceSetup(block, system) void
%<LibBlockSetIsExpressionCompliant(block)>
%endfunction
%function Outputs(block, system) Output
%if Accelerator
/* Call into Simulink to run the Matlab Fcn block. */
%<SLibCallBlockInSimulink(system, block, "SS_CALL_MDL_OUTPUTS")>
%endif
%endfunction