Changeset 523
- Timestamp:
- 05/15/08 16:03:25 (2 months ago)
- Files:
-
- trunk/thune/charset.c (modified) (1 diff)
- trunk/thune/support/mt19937ar.c (modified) (1 diff)
- trunk/thune/support/sha1.c (modified) (1 diff)
- trunk/thune/urlan.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/thune/charset.c
r491 r523 3 3 4 4 5 #ifdef __sun__ 6 #include <inttypes.h> 7 #else 5 8 #include <stdint.h> 9 #endif 6 10 7 11 trunk/thune/support/mt19937ar.c
r481 r523 45 45 */ 46 46 47 #ifdef __sun__ 48 #include <inttypes.h> 49 #else 47 50 #include <stdint.h> 51 #endif 48 52 #include <stdio.h> 49 53 trunk/thune/support/sha1.c
r407 r523 82 82 83 83 #include <string.h> 84 85 #ifdef __sun__ 86 #include <inttypes.h> 87 #ifdef _BIG_ENDIAN 88 #define __BIG_ENDIAN__ 89 #endif 90 #else 84 91 #include <stdint.h> 92 #endif 85 93 86 94 trunk/thune/urlan.h
r516 r523 21 21 22 22 23 #ifdef __sun__ 24 #include <inttypes.h> 25 #ifdef _BIG_ENDIAN 26 #define __BIG_ENDIAN__ 27 #endif 28 #else 23 29 #include <stdint.h> 30 #endif 24 31 25 32
