Add descriptive titles to po files and header.
[glibc.git] / include / sys / time.h
blob599e189bcd67a3533b613231af3f18eaae60deac
1 #ifndef _SYS_TIME_H
2 #include <time/sys/time.h>
4 #ifndef _ISOMAC
5 /* Now document the internal interfaces. */
6 extern int __gettimeofday (struct timeval *__tv,
7 struct timezone *__tz);
8 libc_hidden_proto (__gettimeofday)
9 libc_hidden_proto (gettimeofday)
10 extern int __settimeofday (const struct timeval *__tv,
11 const struct timezone *__tz)
12 attribute_hidden;
13 extern int __adjtime (const struct timeval *__delta,
14 struct timeval *__olddelta);
15 extern int __getitimer (enum __itimer_which __which,
16 struct itimerval *__value);
17 extern int __setitimer (enum __itimer_which __which,
18 const struct itimerval *__restrict __new,
19 struct itimerval *__restrict __old)
20 attribute_hidden;
21 extern int __utimes (const char *__file, const struct timeval __tvp[2])
22 attribute_hidden;
23 extern int __futimes (int fd, const struct timeval tvp[2]) attribute_hidden;
25 #endif
26 #endif