Changeset 6914 for trunk/include/win/wine/unicode.h
- Timestamp:
- Oct 1, 2001, 3:34:52 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/unicode.h
r6103 r6914 53 53 #endif 54 54 55 #if defined(__IBMC__) || defined(__IBMCPP__) 55 #if defined(__IBMC__) || defined(__IBMCPP__) || defined(__WATCOMC__) || defined(__WATCOM_CPLUSPLUS__) 56 56 #define static 57 57 #endif … … 135 135 { 136 136 WCHAR *ret = str1; 137 #ifdef __WATCOMC__ /* kso: it's so noisy and I don't find the right pragma... */ 138 while (n-- > 0) if ((*str1++ = *str2++) != 0) break; 139 #else 137 140 while (n-- > 0) if (!(*str1++ = *str2++)) break; 141 #endif 138 142 while (n-- > 0) *str1++ = 0; 139 143 return ret; … … 185 189 186 190 187 #if defined(__IBMC__) || defined(__IBMCPP__) 191 #if defined(__IBMC__) || defined(__IBMCPP__) || defined(__WATCOMC__) || defined(__WATCOM_CPLUSPLUS__) 188 192 #undef static 189 193 #endif
Note:
See TracChangeset
for help on using the changeset viewer.