Changeset 55eda08
- Timestamp:
- 2008-06-10T03:09:33Z (16 years ago)
- Branches:
- master
- Children:
- 7f49a86
- Parents:
- 7d3ef7b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
win32.c
r7d3ef7b r55eda08 318 318 319 319 void log_link(int level, int output) { /* FIXME */ } 320 321 struct tm * 322 gmtime_r (const time_t *timer, struct tm *result) 323 { 324 struct tm *local_result; 325 local_result = gmtime (timer); 326 327 if (local_result == NULL || result == NULL) 328 return NULL; 329 330 memcpy (result, local_result, sizeof (result)); 331 return result; 332 }
Note: See TracChangeset
for help on using the changeset viewer.