Added
Link Here
|
1 |
--- src/libjasper/include/jasper/jas_types.h.orig Tue Jan 15 17:07:34 2002 |
2 |
+++ src/libjasper/include/jasper/jas_types.h Fri Sep 6 07:22:09 2002 |
3 |
@@ -204,7 +204,7 @@ |
4 |
#endif |
5 |
/**********/ |
6 |
#if !defined(UINT_FAST8_MIN) |
7 |
-typedef uchar uint_fast8_t; |
8 |
+typedef unsigned char uint_fast8_t; |
9 |
#define UINT_FAST8_MIN 0 |
10 |
#define UINT_FAST8_MAX 255 |
11 |
#endif |
12 |
@@ -216,7 +216,7 @@ |
13 |
#endif |
14 |
/**********/ |
15 |
#if !defined(UINT_FAST16_MIN) |
16 |
-typedef ushort uint_fast16_t; |
17 |
+typedef unsigned short uint_fast16_t; |
18 |
#define UINT_FAST16_MIN USHRT_MIN |
19 |
#define UINT_FAST16_MAX USHRT_MAX |
20 |
#endif |
21 |
@@ -228,19 +228,19 @@ |
22 |
#endif |
23 |
/**********/ |
24 |
#if !defined(UINT_FAST32_MIN) |
25 |
-typedef uint uint_fast32_t; |
26 |
+typedef unsigned int uint_fast32_t; |
27 |
#define UINT_FAST32_MIN UINT_MIN |
28 |
#define UINT_FAST32_MAX UINT_MAX |
29 |
#endif |
30 |
/**********/ |
31 |
#if !defined(INT_FAST64_MIN) |
32 |
-typedef longlong int_fast64_t; |
33 |
+typedef long long int_fast64_t; |
34 |
#define INT_FAST64_MIN LLONG_MIN |
35 |
#define INT_FAST64_MAX LLONG_MAX |
36 |
#endif |
37 |
/**********/ |
38 |
#if !defined(UINT_FAST64_MIN) |
39 |
-typedef ulonglong uint_fast64_t; |
40 |
+typedef unsigned long long uint_fast64_t; |
41 |
#define UINT_FAST64_MIN ULLONG_MIN |
42 |
#define UINT_FAST64_MAX ULLONG_MAX |
43 |
#endif |