Changeset 2660 in kBuild for trunk/src/sed/sed
- Timestamp:
- Sep 10, 2012 9:58:26 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/sed/sed/sed.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sed/sed/sed.c
r2453 r2660 407 407 return return_code; 408 408 } 409 410 #ifdef __HAIKU__ /* mbrtowc is busted, just stub it and pray the input won't ever acutally be multibyte... */ 411 size_t mbrtowc(wchar_t *pwc, const char *pch, size_t n, mbstate_t *ps) 412 { 413 if (!n) 414 return 0; 415 if (pwc) 416 *pwc = *pch; 417 return 1; 418 } 419 #endif
Note:
See TracChangeset
for help on using the changeset viewer.

