Update to 2.0.0 tree from current Fremantle build
[opencv] / apps / cvenv / include / sys / time.h
diff --git a/apps/cvenv/include/sys/time.h b/apps/cvenv/include/sys/time.h
deleted file mode 100644 (file)
index a85b288..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#define CLOCKS_PER_SEC 1000000
-
-#ifndef _EiC
-#define unsafe 
-#endif
-
-struct tm {
-        int     tm_sec;
-        int     tm_min;
-        int     tm_hour;
-        int     tm_mday;
-        int     tm_mon;
-        int     tm_year;
-        int     tm_wday;
-        int     tm_yday;
-        int     tm_isdst;        
-
-        long    tm_gmtoff;
-        char    * unsafe tm_zone;
-
-};
-
-char *asctime(struct tm * tm);
-clock_t clock(void);
-char *ctime(time_t * clock);
-double difftime(time_t t1, time_t t2);
-struct tm *gmtime(time_t *clock);
-struct tm *localtime(time_t *clock);
-time_t mktime(struct tm * tm);
-size_t strftime(char * buf, size_t bufsize,char * fmt,struct tm *tm);
-time_t time(time_t * tloc);
-
-#ifndef _EiC
-#undef unsafe 
-#endif
-
-