diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-01 11:09:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-01 11:09:28 +0000 |
commit | 28b2092a160fe626044a5ddcd131597bb7c77ba6 (patch) | |
tree | 57b77535f187425b485569232bdb97ee534c271c /lib/libc/sys/truncate.c | |
parent | 3a7eeb51143e769a9c17a1770dd5f7278d9e10c1 (diff) |
do not proto __syscall or you will experience excruciating pain
Diffstat (limited to 'lib/libc/sys/truncate.c')
-rw-r--r-- | lib/libc/sys/truncate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libc/sys/truncate.c b/lib/libc/sys/truncate.c index e8b0d73212f..c54c6ed98ce 100644 --- a/lib/libc/sys/truncate.c +++ b/lib/libc/sys/truncate.c @@ -53,7 +53,6 @@ truncate(path, length) const char *path; off_t length; { - quad_t __syscall __P((quad_t, ...)); return(__syscall((quad_t)SYS_truncate, path, 0, length)); } |