From fa40f30b4253b1e05c46cc5e0c111176825b7623 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Wed, 29 Oct 2003 16:07:11 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'Corpo_2_1_1'. --- mdk-stage1/dietlibc/include/time.h | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'mdk-stage1/dietlibc/include/time.h') diff --git a/mdk-stage1/dietlibc/include/time.h b/mdk-stage1/dietlibc/include/time.h index 827c85b97..29681fa3d 100644 --- a/mdk-stage1/dietlibc/include/time.h +++ b/mdk-stage1/dietlibc/include/time.h @@ -7,7 +7,6 @@ extern int __isleap(int year); int nanosleep(const struct timespec *req, struct timespec *rem) __THROW; -unsigned int sleep(unsigned int secs) __THROW; time_t mktime(struct tm *timeptr) __THROW __pure__; @@ -16,9 +15,26 @@ char *asctime_r(const struct tm *timeptr, char *buf) __THROW; char *ctime(const time_t *timep) __THROW; -size_t strftime(char *s, size_t max, const char *format, const struct tm *tm) __THROW; +size_t strftime(char *s, size_t max, const char *format, const struct tm *tm) __THROW __attribute__((format(strftime,3,0))); time_t time(time_t *t) __THROW; int stime(time_t *t) __THROW; +double difftime(time_t time1, time_t time0) __THROW __attribute__((const)); + +#define CLOCKS_PER_SEC 1000000l + +extern long int timezone; +extern int daylight; +extern char* tzname[2]; + +void tzset (void) __THROW; + +struct tm* localtime(const time_t* t) __THROW; +struct tm* gmtime(const time_t* t) __THROW; +struct tm* localtime_r(const time_t* t, struct tm* r) __THROW; +struct tm* gmtime_r(const time_t* t, struct tm* r) __THROW; + +clock_t clock(void); + #endif -- cgit v1.2.1