diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-02 13:14:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-02 13:14:05 +0000 |
commit | d349db6bd40ad0fbbee1bef747301c6ac5f5ddd2 (patch) | |
tree | e33cd8ec3a2f12e0093d38c9f356a5ed709bdca9 | |
parent | b86d58f06293c2156a7fe716a87f3467270f167d (diff) |
add futimes()
-rw-r--r-- | sys/sys/time.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/time.h b/sys/sys/time.h index bf904fe6cbc..b95e8b0659c 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -1,5 +1,5 @@ -/* $OpenBSD: time.h,v 1.2 1996/02/29 13:57:31 niklas Exp $ */ -/* $NetBSD: time.h,v 1.16 1995/06/15 23:08:11 cgd Exp $ */ +/* $OpenBSD: time.h,v 1.3 1996/05/02 13:14:04 deraadt Exp $ */ +/* $NetBSD: time.h,v 1.18 1996/04/23 10:29:33 mycroft Exp $ */ /* * Copyright (c) 1982, 1986, 1993 @@ -141,6 +141,7 @@ void microtime __P((struct timeval *tv)); __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 setitimer __P((int, const struct itimerval *, struct itimerval *)); |