diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2004-06-07 21:11:24 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2004-06-07 21:11:24 +0000 |
commit | 768c8cdce4390df345d6498b2a3307d67a5749e7 (patch) | |
tree | 00a877e5acbe675ccad443ca71c778ca03852221 /lib/libc/sys/lseek.c | |
parent | ece2fea13db64b72fa79e093ca7679e7a491fdd3 (diff) |
major bump to libc and libpthread to break the dependency of a
particular implementation of libpthread for libc. libc no longer
needs pthread.h to compile.
OK millert@, brad@, tedu@
Diffstat (limited to 'lib/libc/sys/lseek.c')
-rw-r--r-- | lib/libc/sys/lseek.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/lseek.c b/lib/libc/sys/lseek.c index d811ce9b8ae..b5c629e1b89 100644 --- a/lib/libc/sys/lseek.c +++ b/lib/libc/sys/lseek.c @@ -28,11 +28,13 @@ */ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: lseek.c,v 1.10 2003/06/11 21:03:10 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: lseek.c,v 1.11 2004/06/07 21:11:23 marc Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <sys/types.h> +#include <sys/time.h> #include <sys/syscall.h> +#include <unistd.h> #include "thread_private.h" /* |