Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | add tcl upstream changes |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b1cdfa687505af45c4aa1b4552c4db28 |
User & Date: | chw 2019-06-12 03:19:46.109 |
Context
2019-06-12
| ||
05:00 | fix typo in twv demo script check-in: cf9d6db9cf user: chw tags: trunk | |
03:21 | merge with trunk check-in: 282e005b04 user: chw tags: wtf-8-experiment | |
03:19 | add tcl upstream changes check-in: b1cdfa6875 user: chw tags: trunk | |
03:17 | add some twv demos check-in: 9352a29c3d user: chw tags: trunk | |
Changes
Changes to jni/tcl/generic/tclInt.h.
︙ | ︙ | |||
45 46 47 48 49 50 51 | #endif #ifdef NO_STRING_H #include "../compat/string.h" #else #include <string.h> #endif #if defined(STDC_HEADERS) || defined(__STDC__) || defined(__C99__FUNC__) \ | | | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | #endif #ifdef NO_STRING_H #include "../compat/string.h" #else #include <string.h> #endif #if defined(STDC_HEADERS) || defined(__STDC__) || defined(__C99__FUNC__) \ || defined(__cplusplus) || defined(_MSC_VER) || defined(__ICC) #include <stddef.h> #else typedef int ptrdiff_t; #endif /* * Ensure WORDS_BIGENDIAN is defined correctly: |
︙ | ︙ |