comparison src/typedef.h @ 0:56410792419a

src: original EFR source from ETSI
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 03 Apr 2024 05:31:37 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:56410792419a
1 /*_____________________
2 | |
3 | Basic types. |
4 |_____________________|
5 */
6
7 #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(_MSC_VER) || defined(__ZTC__)
8 typedef short Word16;
9 typedef long Word32;
10 typedef int Flag;
11
12 #elif defined(__sun)
13 typedef short Word16;
14 typedef long Word32;
15 typedef int Flag;
16
17 #elif defined(__unix__) || defined(__unix)
18 typedef short Word16;
19 typedef int Word32;
20 typedef int Flag;
21
22 #endif