X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=apps%2FHawk%2FCVEiCL%2FEiC%2Fmodule%2FstdClib%2Fsrc%2F_LINUX%2Ftime.h;fp=apps%2FHawk%2FCVEiCL%2FEiC%2Fmodule%2FstdClib%2Fsrc%2F_LINUX%2Ftime.h;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=a85b28870a0481583a91b37bbe8537b617557c64;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/apps/Hawk/CVEiCL/EiC/module/stdClib/src/_LINUX/time.h b/apps/Hawk/CVEiCL/EiC/module/stdClib/src/_LINUX/time.h deleted file mode 100644 index a85b288..0000000 --- a/apps/Hawk/CVEiCL/EiC/module/stdClib/src/_LINUX/time.h +++ /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 - -