Changeset 8d2963d in mainline for uspace/lib/c/include/sys/time.h


Ignore:
Timestamp:
2012-04-03T07:51:15Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
923b2eba
Parents:
28ca043f
Message:

rtc: replace time_t with the new tm structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/sys/time.h

    r28ca043f r8d2963d  
    4646typedef uint32_t mseconds_t;
    4747
     48struct tm {
     49        int tm_sec;       /* 0 - 59 */
     50        int tm_min;       /* 0 - 59 */
     51        int tm_hour;      /* 0 - 23 */
     52        int tm_mday;      /* 1 - 31 */
     53        int tm_year;      /* years since 1900 */
     54};
     55
    4856struct timeval {
    4957        time_t tv_sec;        /* seconds */
Note: See TracChangeset for help on using the changeset viewer.