Go to the documentation of this file.00001 #ifndef __GET_TIME_OF_DAY_H
00002 #define __GET_TIME_OF_DAY_H
00003
00004 #if defined(_WIN32) && !defined(__GNUC__) &&!defined(__GCCXML__)
00005 #include < time.h >
00006 struct timezone
00007 {
00008 int tz_minuteswest;
00009 int tz_dsttime;
00010 };
00011 int gettimeofday(struct timeval *tv, struct timezone *tz);
00012 #else
00013 #include <sys/time.h>
00014 #include <unistd.h>
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #endif
00048
00049 #endif