From 02fec4701cee79f875c1d02b8b4aee09380dbcb8 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 4 Jan 2001 20:04:45 +0000 Subject: integrate dietlibc/stdio per default for cdrom and disk only installs --- mdk-stage1/dietlibc/include/sys/time.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 mdk-stage1/dietlibc/include/sys/time.h (limited to 'mdk-stage1/dietlibc/include/sys/time.h') diff --git a/mdk-stage1/dietlibc/include/sys/time.h b/mdk-stage1/dietlibc/include/sys/time.h new file mode 100644 index 000000000..069d50a83 --- /dev/null +++ b/mdk-stage1/dietlibc/include/sys/time.h @@ -0,0 +1,24 @@ +#ifndef _SYS_TIME_H +#define _SYS_TIME_H 1 + +#include + +#include +#include + +#if defined __USE_GNU || defined __USE_BSD +typedef struct timezone *__timezone_ptr_t; +#else +typedef void *__timezone_ptr_t; +#endif + +int getitimer(int which, struct itimerval *value) __THROW; +int setitimer(int which, const struct itimerval *value, struct itimerval *ovalue) __THROW; + +int gettimeofday(struct timeval *tv, struct timezone *tz) __THROW; +int settimeofday(const struct timeval *tv , const struct timezone *tz) __THROW; + +extern int adjtime (const struct timeval *__delta, + struct timeval *__olddelta) __THROW; + +#endif -- cgit v1.2.1