Ignore:
File:
1 edited

Legend:

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

    r5fd3f2d r9e06e9f  
    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_mon;       /* 0 - 11 */
     54        int tm_year;      /* years since 1900 */
     55};
     56
    4857struct timeval {
    4958        time_t tv_sec;        /* seconds */
Note: See TracChangeset for help on using the changeset viewer.