diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-17 21:16:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-17 21:16:02 +0000 |
commit | 4768505c29990ff01e13044545b29c1fdf9fcd31 (patch) | |
tree | ceb4510af8f14eab9795ee56c59b61875f938981 /lib/libc/sys/truncate.c | |
parent | 87ca0d033f283587c2220d51ccbe048f9201eabd (diff) |
uncommit, since it breaks macppc libc. millert and miod have now said they
did NOT approve those for commit. why did mickey feel he was ok to go
commiting a set of diffs which had not been passed around and tested by people?
we don't know. mickey, have you got something to say for yourself?
Diffstat (limited to 'lib/libc/sys/truncate.c')
-rw-r--r-- | lib/libc/sys/truncate.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libc/sys/truncate.c b/lib/libc/sys/truncate.c index 6c42edc4ff5..e0c62ed39b3 100644 --- a/lib/libc/sys/truncate.c +++ b/lib/libc/sys/truncate.c @@ -32,12 +32,15 @@ */ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: truncate.c,v 1.7 2002/09/17 12:57:50 mickey Exp $"; +static char rcsid[] = "$OpenBSD: truncate.c,v 1.8 2002/09/17 21:16:01 deraadt Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <sys/types.h> #include <sys/syscall.h> -#include <unistd.h> + +#ifdef lint +quad_t __syscall(quad_t, ...); +#endif /* * This function provides 64-bit offset padding that @@ -49,5 +52,5 @@ truncate(path, length) off_t length; { - return(__syscall(SYS_truncate, path, 0, length)); + return(__syscall((quad_t)SYS_truncate, path, 0, length)); } |