Ignore:
File:
1 edited

Legend:

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

    r7f9d97f3 r1ab8539  
    5050
    5151struct tm {
    52         int tm_usec;   /* Microseconds [0,999999]. */
    5352        int tm_sec;    /* Seconds [0,60]. */
    5453        int tm_min;    /* Minutes [0,59]. */
     
    7271};
    7372
    74 extern void tv_add_diff(struct timeval *, suseconds_t);
    75 extern void tv_add(struct timeval *, struct timeval *);
    76 extern suseconds_t tv_sub_diff(struct timeval *, struct timeval *);
    77 extern void tv_sub(struct timeval *, struct timeval *);
     73extern void tv_add(struct timeval *, suseconds_t);
     74extern suseconds_t tv_sub(struct timeval *, struct timeval *);
    7875extern int tv_gt(struct timeval *, struct timeval *);
    7976extern int tv_gteq(struct timeval *, struct timeval *);
     
    8279
    8380extern void udelay(useconds_t);
    84 extern int usleep(useconds_t);
    8581
    8682extern time_t mktime(struct tm *);
     
    8884extern int time_utc2str(const time_t, char *);
    8985extern void time_tm2str(const struct tm *, char *);
    90 extern int time_tv2tm(const struct timeval *, struct tm *);
    9186extern int time_local2tm(const time_t, struct tm *);
    9287extern int time_local2str(const time_t, char *);
Note: See TracChangeset for help on using the changeset viewer.