comparison src/mex.h @ 6048:53e42cafb94a

[project @ 2006-10-11 19:23:04 by jwe]
author jwe
date Wed, 11 Oct 2006 19:23:04 +0000
parents c20eb7330d13
children 93c65f2a5668
comparison
equal deleted inserted replaced
6047:176f1c58a474 6048:53e42cafb94a
101 101
102 #define mxFreeMatrix mxDestroyArray 102 #define mxFreeMatrix mxDestroyArray
103 103
104 #define mxIsString mxIsChar 104 #define mxIsString mxIsChar
105 105
106 /* Apparently these are also defined. */
107
108 #ifndef UINT64_T
109 #define UINT64_T uint64_t
110 #endif
111
112 #ifndef uint64_T
113 #define uint64_T uint64_t
114 #endif
115
116 #ifndef INT64_T
117 #define INT64_T int64_t
118 #endif
119
120 #ifndef int64_T
121 #define int64_T int64_t
122 #endif
123
124 #ifndef UINT32_T
125 #define UINT32_T uint32_t
126 #endif
127
128 #ifndef uint32_T
129 #define uint32_T uint32_t
130 #endif
131
132 #ifndef INT32_T
133 #define INT32_T int32_t
134 #endif
135
136 #ifndef int32_T
137 #define int32_T int32_t
138 #endif
139
140 #ifndef UINT16_T
141 #define UINT16_T uint16_t
142 #endif
143
144 #ifndef uint16_T
145 #define uint16_T uint16_t
146 #endif
147
148 #ifndef INT16_T
149 #define INT16_T int16_t
150 #endif
151
152 #ifndef int16_T
153 #define int16_T int16_t
154 #endif
155
156 #ifndef UINT8_T
157 #define UINT8_T uint8_t
158 #endif
159
160 #ifndef uint8_T
161 #define uint8_T uint8_t
162 #endif
163
164 #ifndef INT8_T
165 #define INT8_T int8_t
166 #endif
167
168 #ifndef int8_T
169 #define int8_T int8_t
170 #endif
171
106 #if defined (__cplusplus) 172 #if defined (__cplusplus)
107 } 173 }
108 #endif 174 #endif
109 175
110 #endif 176 #endif