Changeset 3293a94 in mainline for uspace/lib/c/include/sys/time.h
- Timestamp:
- 2012-04-23T22:40:02Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7719958
- Parents:
- 4cade47 (diff), d3e3a71 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/time.h
r4cade47 r3293a94 41 41 42 42 #define DST_NONE 0 43 #define ASCTIME_BUF_LEN 26 43 44 44 45 typedef long time_t; … … 78 79 extern void udelay(useconds_t); 79 80 81 extern time_t mktime(struct tm *tm); 82 extern struct tm *gmtime(const time_t *timer); 83 extern char *asctime(const struct tm *timeptr); 84 extern struct tm *localtime(const time_t *timer); 85 extern char *ctime(const time_t *timer); 86 extern double difftime(time_t time1, time_t time0); 87 extern size_t strftime(char *restrict s, size_t maxsize, 88 const char *restrict format, const struct tm *restrict tm); 89 80 90 #endif 81 91
Note:
See TracChangeset
for help on using the changeset viewer.