Changeset daa90e8 in mainline for uspace/lib/libc/include/sys/time.h


Ignore:
Timestamp:
2007-07-02T18:30:54Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7b63b6b
Parents:
f2f0392
Message:

Remove duplicit and empty time.h from libc.
Move timeval functions from async.c to time.c.

File:
1 edited

Legend:

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

    rf2f0392 rdaa90e8  
    5353};
    5454
    55 int gettimeofday(struct timeval *tv, struct timezone *tz);
     55extern void tv_add(struct timeval *tv, suseconds_t usecs);
     56extern suseconds_t tv_sub(struct timeval *tv1, struct timeval *tv2);
     57extern int tv_gt(struct timeval *tv1, struct timeval *tv2);
     58extern int tv_gteq(struct timeval *tv1, struct timeval *tv2);
     59extern int gettimeofday(struct timeval *tv, struct timezone *tz);
    5660
    5761#endif
Note: See TracChangeset for help on using the changeset viewer.