equal
deleted
inserted
replaced
8 #include <math.h> |
8 #include <math.h> |
9 #include <limits.h> |
9 #include <limits.h> |
10 #include <float.h> |
10 #include <float.h> |
11 |
11 |
12 typedef unsigned char UCHAR; |
12 typedef unsigned char UCHAR; |
|
13 |
13 typedef signed char SCHAR; |
14 typedef signed char SCHAR; |
14 |
15 |
15 typedef unsigned short USHORT; |
16 typedef unsigned short USHORT; |
|
17 |
16 typedef signed short SSHORT; |
18 typedef signed short SSHORT; |
17 |
19 |
18 typedef unsigned int UINT; |
20 typedef unsigned int UINT; |
|
21 |
19 typedef signed int SINT; |
22 typedef signed int SINT; |
20 |
23 |
21 typedef unsigned long ULONG; |
24 typedef unsigned long ULONG; |
|
25 |
22 typedef signed long SLONG; |
26 typedef signed long SLONG; |
23 |
27 |
24 #ifdef __USE_ISOC99 |
28 #ifdef __USE_ISOC99 |
25 typedef unsigned long long ULLONG; |
29 typedef unsigned long long ULLONG; |
|
30 |
26 typedef signed long long SLLONG; |
31 typedef signed long long SLLONG; |
27 #endif |
32 #endif |
28 |
33 |
29 int main (int argc, char **argv) |
34 int main (int argc, char **argv) |
30 { |
35 { |