Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / _SUNOS / time.h
1 #define CLOCKS_PER_SEC 100000
2
3 struct  tm {
4         int     tm_sec;
5         int     tm_min;
6         int     tm_hour;
7         int     tm_mday;
8         int     tm_mon;
9         int     tm_year;
10         int     tm_wday;
11         int     tm_yday;
12         int     tm_isdst;
13         char    *tm_zone;
14         long    tm_gmtoff;
15 };
16
17 char *asctime(struct tm * tm);
18 clock_t clock(void);
19 char *ctime(time_t * clock);
20 double difftime(time_t t1, time_t t2);
21 struct tm *gmtime(time_t *clock);
22 struct tm *localtime(time_t *clock);
23 /*time_t mktime(struct tm * tm);*/
24 size_t strftime(char * buf, size_t bufsize, char * fmt,struct tm *tm);
25 time_t time(time_t * tloc);
26
27
28 /**********      None standard SUNOS functions not implemented in EiC
29 char *strptime(char *buf, char *fmt, struct tm * tm);
30 time_t timegm(struct tm *tm);
31 time_t timelocal(struct tm *tm);
32 void tzset();
33 void tzsetwall();
34 int dysize(int y);
35 ***********/
36
37
38
39
40
41
42
43