- Timestamp:
- Jan 30, 2015 3:32:38 AM (10 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/config.h.win
r2759 r2766 222 222 223 223 /* Define to 1 if you have the <stdint.h> header file. */ 224 /*#define HAVE_STDINT_H 1*/ 224 #if _MSC_VER >= 1600 225 # define HAVE_STDINT_H 1 226 #endif 225 227 226 228 /* Define to 1 if you have the <stdlib.h> header file. */ … … 447 449 448 450 /* Define uintmax_t if not defined in <stdint.h> or <inttypes.h>. */ 449 #if 0 450 #define uintmax_t unsigned long 451 #else 452 #define uintmax_t unsigned __int64 451 #if _MSC_VER < 1600 452 # if 0 453 # define uintmax_t unsigned long 454 # else 455 # define uintmax_t unsigned __int64 456 # endif 453 457 #endif 454 458 -
trunk/src/kmk/kmkbuiltin/mscfakes.h
r2759 r2766 93 93 typedef unsigned short u_short; 94 94 95 #if _MSC_VER >= 1600 96 # include <stdint.h> 97 #else 98 typedef unsigned char uint8_t; 99 typedef unsigned short uint16_t; 100 typedef unsigned int uint32_t; 101 typedef signed char int8_t; 102 typedef signed short int16_t; 103 typedef signed int int32_t; 104 #endif 105 95 106 #if !defined(timerisset) && defined(MSCFAKES_NO_WINDOWS_H) 96 107 struct timeval
Note:
See TracChangeset
for help on using the changeset viewer.