Changeset 1788 for trunk/src/emx/include
- Timestamp:
- Jan 17, 2005, 9:07:48 AM (21 years ago)
- Location:
- trunk/src/emx/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/emx/time.h
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r1787 r1788 20 20 #define _TIME_T /* bird: EMX */ 21 21 #endif 22 23 #ifndef _TIME64_T_DECLARED /* bird: LIBC */ 24 typedef __int64_t time64_t; /* bird: LIBC */ 25 #define _TIME64_T_DECLARED /* bird: LIBC */ 26 #endif /* bird: LIBC */ 22 27 23 28 struct tm; … … 45 50 int _day (int, int, int); 46 51 int _gmt2loc (time_t *); 52 int _gmt2loc64 (time64_t *p); 47 53 int _loc2gmt (time_t *, int); 48 /* struct tm *_gmtime (struct tm *, const time_t *); - use gmtime_r */ 49 /* struct tm *_localtime (struct tm *, const time_t *); - use localtime_r */ 54 int _loc2gmt64 (time64_t *, int); 55 /* struct tm *_gmtime (struct tm *, const time_t *); - use _gmtime64_r */ 56 /* struct tm *_localtime (struct tm *, const time_t *); - use _localtime64_r */ 50 57 unsigned long _mktime (struct tm *); 58 time64_t _mktime64 (struct tm *); 51 59 void _compute_dst_table (void); 52 60 -
Property cvs2svn:cvs-rev
changed from
-
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.