diff options
author | grant <grant@pkgsrc.org> | 2004-03-11 13:51:07 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-03-11 13:51:07 +0000 |
commit | 5432169c2fc8ea8d5c7835b341a38f9a7141c661 (patch) | |
tree | e7656a35e1bc3b9e685cbedb035163b5b622d3ed /net/tnftp | |
parent | 64036671317208e903cce2fb1ba1f3bed049f14d (diff) | |
download | pkgsrc-5432169c2fc8ea8d5c7835b341a38f9a7141c661.tar.gz |
catch up with bootstrap-pkgsrc changes.
Oops, there's no nbcompat.h here. Put real #includes.
Diffstat (limited to 'net/tnftp')
-rw-r--r-- | net/tnftp/files/libnetbsd/utimes.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/tnftp/files/libnetbsd/utimes.c b/net/tnftp/files/libnetbsd/utimes.c index 4128c3e42d5..96badf51955 100644 --- a/net/tnftp/files/libnetbsd/utimes.c +++ b/net/tnftp/files/libnetbsd/utimes.c @@ -1,4 +1,4 @@ -/* $NetBSD: utimes.c,v 1.1 2004/03/11 13:48:58 grant Exp $ */ +/* $NetBSD: utimes.c,v 1.2 2004/03/11 13:51:07 grant Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. @@ -38,9 +38,8 @@ * Emulate utimes(2) using utime(2), but losing sub-second granularity. */ -#include "nbcompat.h" - -#include <unistd.h> +#include <sys/types.h> +#include <sys/time.h> #include <utime.h> int |