Changeset 2aadf2b in mainline
- Timestamp:
- 2011-08-16T19:17:46Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 903bd436
- Parents:
- 49160c4
- Location:
- uspace/lib/posix
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/fnmatch.c
r49160c4 r2aadf2b 496 496 end = string; 497 497 } else { 498 end = strchrnul(string, pathname ? '/' : '\0');498 end = strchrnul(string, pathname ? '/' : '\0'); 499 499 } 500 500 -
uspace/lib/posix/signal.c
r49160c4 r2aadf2b 312 312 if ((action.sa_flags & SA_RESETHAND) && signo != SIGILL && signo != SIGTRAP) { 313 313 _signal_actions[signo] = (struct posix_sigaction) DEFAULT_HANDLER; 314 } ;314 } 315 315 316 316 if (action.sa_flags & SA_SIGINFO) { -
uspace/lib/posix/time.c
r49160c4 r2aadf2b 329 329 return tm->tm_year - 1; 330 330 } 331 if (day > 364 + _is_leap_year(tm->tm_year)) {331 if (day > 364 + _is_leap_year(tm->tm_year)) { 332 332 /* First week of next year. */ 333 333 return tm->tm_year + 1; … … 368 368 return 53; 369 369 } 370 if (day > 364 + _is_leap_year(tm->tm_year)) {370 if (day > 364 + _is_leap_year(tm->tm_year)) { 371 371 /* First week of next year. */ 372 372 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.