1998-09-06 23:45:24 +00:00
|
|
|
#ifndef _SYS_TIME_H
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <time/sys/time.h>
|
1998-08-09 17:39:48 +00:00
|
|
|
|
2012-02-26 04:18:39 +00:00
|
|
|
#ifndef _ISOMAC
|
1998-08-09 17:39:48 +00:00
|
|
|
/* Now document the internal interfaces. */
|
1999-10-19 13:53:34 +00:00
|
|
|
extern int __gettimeofday (struct timeval *__tv,
|
1999-11-23 17:22:17 +00:00
|
|
|
struct timezone *__tz);
|
2012-05-24 18:37:30 +00:00
|
|
|
libc_hidden_proto (__gettimeofday)
|
|
|
|
libc_hidden_proto (gettimeofday)
|
2012-01-08 04:57:22 +00:00
|
|
|
extern int __settimeofday (const struct timeval *__tv,
|
|
|
|
const struct timezone *__tz)
|
2003-06-30 23:15:13 +00:00
|
|
|
attribute_hidden;
|
2012-01-08 04:57:22 +00:00
|
|
|
extern int __adjtime (const struct timeval *__delta,
|
1999-11-23 17:22:17 +00:00
|
|
|
struct timeval *__olddelta);
|
1999-10-19 13:53:34 +00:00
|
|
|
extern int __getitimer (enum __itimer_which __which,
|
1999-11-23 17:22:17 +00:00
|
|
|
struct itimerval *__value);
|
1999-10-19 13:53:34 +00:00
|
|
|
extern int __setitimer (enum __itimer_which __which,
|
2012-01-08 04:57:22 +00:00
|
|
|
const struct itimerval *__restrict __new,
|
2003-06-30 23:15:13 +00:00
|
|
|
struct itimerval *__restrict __old)
|
|
|
|
attribute_hidden;
|
2012-01-08 04:57:22 +00:00
|
|
|
extern int __utimes (const char *__file, const struct timeval __tvp[2])
|
2003-06-30 23:15:13 +00:00
|
|
|
attribute_hidden;
|
2012-01-08 04:57:22 +00:00
|
|
|
extern int __futimes (int fd, const struct timeval tvp[2]) attribute_hidden;
|
2002-04-14 09:14:45 +00:00
|
|
|
|
1998-09-06 23:45:24 +00:00
|
|
|
#endif
|
2012-02-26 04:18:39 +00:00
|
|
|
#endif
|