File: rtwtypes.h

    1   /*
    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    * rtwtypes.h
    7    *
    8    * Code generation for function 'calculateTransformations'
    9    *
   10    */
   11   
   12   #ifndef __RTWTYPES_H__
   13   #define __RTWTYPES_H__
   14   #include "tmwtypes.h"
   15   /* 
   16    * TRUE/FALSE definitions
   17    */
   18   #ifndef TRUE
   19   #define TRUE (1U)
   20   #endif 
   21   #ifndef FALSE
   22   #define FALSE (0U)
   23   #endif 
   24   #endif
   25   /* End of code generation (rtwtypes.h) */
   26