File: calculateTransformations_terminate.c1 /* 2 * Academic License - for use in teaching, academic research, and meeting 3 * course requirements at degree granting institutions only. Not for 4 * government, commercial, or other organizational use. 5 * 6 * calculateTransformations_terminate.c 7 * 8 * Code generation for function 'calculateTransformations_terminate' 9 * 10 */ 11 12 /* Include files */ 13 #include "rt_nonfinite.h" 14 #include "calculateTransformations.h" 15 #include "calculateTransformations_terminate.h" 16 #include "_coder_calculateTransformations_mex.h" 17 #include "calculateTransformations_data.h" 18 19 /* Function Definitions */ 20 void calculateTransformations_atexit(void) 21 { 22 emlrtStack st = { NULL, NULL, NULL }; 23 24 mexFunctionCreateRootTLS(); 25 st.tls = emlrtRootTLSGlobal; 26 emlrtEnterRtStackR2012b(&st); 27 emlrtLeaveRtStackR2012b(&st); 28 emlrtDestroyRootTLS(&emlrtRootTLSGlobal); 29 } 30 31 void calculateTransformations_terminate(void) 32 { 33 emlrtStack st = { NULL, NULL, NULL }; 34 35 st.tls = emlrtRootTLSGlobal; 36 emlrtLeaveRtStackR2012b(&st); 37 emlrtDestroyRootTLS(&emlrtRootTLSGlobal); 38 } 39 40 /* End of code generation (calculateTransformations_terminate.c) */ 41 |