From 07a5e27474c395350e9d13435800bc68c513c058 Mon Sep 17 00:00:00 2001 From: bde Date: Thu, 23 Dec 1999 17:00:03 +0000 Subject: [PATCH] Fixed missing declarations of futimes(2) and lutimes(2). --- sys/sys/time.h | 2 ++ sys/sys/timetc.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sys/sys/time.h b/sys/sys/time.h index 1742eb4c837b..fea32d29e407 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -292,8 +292,10 @@ void update_timecounter __P((struct timecounter *tc)); __BEGIN_DECLS int adjtime __P((const struct timeval *, struct timeval *)); +int futimes __P((int, const struct timeval *)); int getitimer __P((int, struct itimerval *)); int gettimeofday __P((struct timeval *, struct timezone *)); +int lutimes __P((const char *, const struct timeval *)); int setitimer __P((int, const struct itimerval *, struct itimerval *)); int settimeofday __P((const struct timeval *, const struct timezone *)); int utimes __P((const char *, const struct timeval *)); diff --git a/sys/sys/timetc.h b/sys/sys/timetc.h index 1742eb4c837b..fea32d29e407 100644 --- a/sys/sys/timetc.h +++ b/sys/sys/timetc.h @@ -292,8 +292,10 @@ void update_timecounter __P((struct timecounter *tc)); __BEGIN_DECLS int adjtime __P((const struct timeval *, struct timeval *)); +int futimes __P((int, const struct timeval *)); int getitimer __P((int, struct itimerval *)); int gettimeofday __P((struct timeval *, struct timezone *)); +int lutimes __P((const char *, const struct timeval *)); int setitimer __P((int, const struct itimerval *, struct itimerval *)); int settimeofday __P((const struct timeval *, const struct timezone *)); int utimes __P((const char *, const struct timeval *));