Changeset 1788 for trunk/src/emx/include/time.h
- Timestamp:
- Jan 17, 2005, 9:07:48 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/time.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r1787 r1788 93 93 #endif 94 94 95 #ifndef _TIME64_T_DECLARED /* bird: LIBC */ 96 typedef __int64_t time64_t; /* bird: LIBC */ 97 #define _TIME64_T_DECLARED /* bird: LIBC */ 98 #endif /* bird: LIBC */ 99 95 100 #if !defined(_SIZE_T_DECLARED) && !defined(_SIZE_T) /* bird: EMX */ 96 101 typedef __size_t size_t; … … 145 150 struct tm *gmtime(const time_t *); 146 151 struct tm *localtime(const time_t *); 152 struct tm *_localtime64_r(const time64_t *, struct tm *); /* bird: LIBC */ 147 153 time_t mktime(struct tm *); 154 time64_t _mktime64(struct tm *); /* bird: LIBC */ 148 155 size_t strftime(char * __restrict, size_t, const char * __restrict, 149 156 const struct tm * __restrict); … … 165 172 char *ctime_r(const time_t *, char *); 166 173 struct tm *gmtime_r(const time_t *, struct tm *); 174 struct tm *_gmtime64_r(const time64_t *, struct tm *); /* bird: LIBC */ 167 175 struct tm *localtime_r(const time_t *, struct tm *); 168 176 #endif -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.