Openholo  v2.1
Open Source Digital Holographic Library
rtwtypes.h
Go to the documentation of this file.
1 /*
2  * rtwtypes.h
3  *
4  * Code generation for function 'AngularC'
5  *
6  */
7 
8 #ifndef RTWTYPES_H
9 #define RTWTYPES_H
10 
11 /*=======================================================================*
12  * Fixed width word size data types: *
13  * int64_T - signed 64 bit integers *
14  * uint64_T - unsigned 64 bit integers *
15  *=======================================================================*/
16 #if defined(__APPLE__)
17 # ifndef INT64_T
18 # define INT64_T long
19 # define FMT64 "l"
20 # if defined(__LP64__) && !defined(INT_TYPE_64_IS_LONG)
21 # define INT_TYPE_64_IS_LONG
22 # endif
23 # endif
24 #endif
25 
26 #if defined(__APPLE__)
27 # ifndef UINT64_T
28 # define UINT64_T unsigned long
29 # define FMT64 "l"
30 # if defined(__LP64__) && !defined(INT_TYPE_64_IS_LONG)
31 # define INT_TYPE_64_IS_LONG
32 # endif
33 # endif
34 #endif
35 
36 #include "tmwtypes.h"
37 #endif
38 
39 /* End of code generation (rtwtypes.h) */