Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / _HPUX / time.h
1 #define CLOCKS_PER_SEC 2000
2
3
4 struct tm {
5         int     tm_sec;
6         int     tm_min;
7         int     tm_hour;
8         int     tm_mday;
9         int     tm_mon;
10         int     tm_year;
11         int     tm_wday;
12         int     tm_yday;
13         int     tm_isdst;
14 };
15
16 char *asctime(struct tm * tm);
17 clock_t clock(void);
18 char *ctime(time_t * clock);
19 double difftime(time_t t1, time_t t2);
20 struct tm *gmtime(time_t *clock);
21 struct tm *localtime(time_t *clock);
22 time_t mktime(struct tm * tm);
23 size_t strftime(char * buf, size_t bufsize,char * fmt,struct tm *tm);
24 time_t time(time_t * tloc);
25
26