* libc/include/sys/time.h: Declare futimes and lutimes for Cygwin.
This commit is contained in:
parent
81bd1ca723
commit
c70571bdbe
|
@ -1,3 +1,7 @@
|
|||
2005-10-20 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/include/sys/time.h: Declare futimes and lutimes for Cygwin.
|
||||
|
||||
2005-10-18 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/include/sys/features.h: Define _POSIX_MEMLOCK_RANGE for Cygwin.
|
||||
|
|
|
@ -73,6 +73,10 @@ struct itimerval {
|
|||
int _EXFUN(gettimeofday, (struct timeval *__p, struct timezone *__z));
|
||||
int _EXFUN(settimeofday, (const struct timeval *, const struct timezone *));
|
||||
int _EXFUN(utimes, (const char *__path, const struct timeval *__tvp));
|
||||
#ifdef __CYGWIN__
|
||||
int _EXFUN(futimes, (int __fd, const struct timeval *__tvp));
|
||||
int _EXFUN(lutimes, (const char *__path, const struct timeval *__tvp));
|
||||
#endif
|
||||
int _EXFUN(getitimer, (int __which, struct itimerval *__value));
|
||||
int _EXFUN(setitimer, (int __which, const struct itimerval *__value,
|
||||
struct itimerval *__ovalue));
|
||||
|
|
Loading…
Reference in New Issue