Changeset 664fc031 in mainline for uspace/lib/posix/time.c
- Timestamp:
- 2012-08-22T18:53:13Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2e6293b
- Parents:
- 077dad2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/time.c
r077dad2 r664fc031 87 87 struct tm *restrict result) 88 88 { 89 int rc = utctime2tm(*timer, result);89 int rc = time_utc2tm(*timer, result); 90 90 if (rc != EOK) { 91 91 errno = rc; … … 153 153 char *restrict buf) 154 154 { 155 t m2str(timeptr, buf);155 time_tm2str(timeptr, buf); 156 156 return buf; 157 157 } … … 184 184 char *posix_ctime_r(const time_t *timer, char *buf) 185 185 { 186 int r = localtime2str(*timer, buf);186 int r = time_local2str(*timer, buf); 187 187 if (r != EOK) { 188 188 errno = r;
Note:
See TracChangeset
for help on using the changeset viewer.