From ef72e382c0e5100fe33c071cbc9de0aaf356a91b Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Wed, 4 Dec 2013 19:17:48 +0100 Subject: [PATCH] : setitimer() and utimes() are not BSD specific. --- sys/sys/time.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/sys/time.h b/sys/sys/time.h index d9d2b9b705..598de52af0 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -236,17 +236,16 @@ __BEGIN_DECLS int adjtime(const struct timeval *, struct timeval *); int futimes(int, const struct timeval *); int lutimes(const char *, const struct timeval *); -int setitimer(int, const struct itimerval *, struct itimerval *); int settimeofday(const struct timeval *, const struct timezone *); -int utimes(const char *, const struct timeval *); #endif #if __XSI_VISIBLE int getitimer(int, struct itimerval *); int gettimeofday(struct timeval *, struct timezone *); +int setitimer(int, const struct itimerval *, struct itimerval *); +int utimes(const char *, const struct timeval *); #endif __END_DECLS - #endif /* !_SYS_TIME_H_ */ -- 2.11.4.GIT