123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // File: rtwtypes.h
- //
- // MATLAB Coder version : 5.2
- // C/C++ source code generated on : 01-Mar-2023 10:44:39
- //
- #ifndef RTWTYPES_H
- #define RTWTYPES_H
- /*=======================================================================*
- * Fixed width word size data types: *
- * int64_T - signed 64 bit integers *
- * uint64_T - unsigned 64 bit integers *
- *=======================================================================*/
- #if defined(__APPLE__)
- #ifndef INT64_T
- #define INT64_T long
- #define FMT64 "l"
- #if defined(__LP64__) && !defined(INT_TYPE_64_IS_LONG)
- #define INT_TYPE_64_IS_LONG
- #endif
- #endif
- #endif
- #if defined(__APPLE__)
- #ifndef UINT64_T
- #define UINT64_T unsigned long
- #define FMT64 "l"
- #if defined(__LP64__) && !defined(INT_TYPE_64_IS_LONG)
- #define INT_TYPE_64_IS_LONG
- #endif
- #endif
- #endif
- // Include Files
- #include "tmwtypes.h"
- #endif
- //
- // File trailer for rtwtypes.h
- //
- // [EOF]
- //
|