2005-06-10 17:12:03 +02:00
|
|
|
/*
|
|
|
|
sys/time.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYS__TIME_H
|
|
|
|
#define _SYS__TIME_H
|
|
|
|
|
|
|
|
#include <ansi.h>
|
|
|
|
|
|
|
|
/* Open Group Base Specifications Issue 6 (not complete) */
|
|
|
|
struct timeval
|
|
|
|
{
|
|
|
|
long /*time_t*/ tv_sec;
|
|
|
|
long /*useconds_t*/ tv_usec;
|
|
|
|
};
|
|
|
|
|
2007-03-30 17:36:49 +02:00
|
|
|
struct timezone {
|
|
|
|
int tz_minuteswest; /* minutes west of Greenwich */
|
|
|
|
int tz_dsttime; /* type of dst correction */
|
|
|
|
};
|
|
|
|
|
2005-06-10 17:12:03 +02:00
|
|
|
int gettimeofday(struct timeval *_RESTRICT tp, void *_RESTRICT tzp);
|
|
|
|
|
|
|
|
/* Compatibility with other Unix systems */
|
|
|
|
int settimeofday(const struct timeval *tp, const void *tzp);
|
|
|
|
|
|
|
|
#endif /* _SYS__TIME_H */
|