diff options
| author | christos <christos@NetBSD.org> | 1998-11-15 17:19:53 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1998-11-15 17:19:53 +0000 |
| commit | e7f7fdba9a2ceba2e63bb84ca8a38c2624b7bf1c (patch) | |
| tree | 0ed0e8a0dad82e3eb6e4c7fc56536932a52f2740 /lib/libc/stdio/fwrite.c | |
| parent | d1d407360d0bc6cf5fec4853bcdfb05489194cac (diff) | |
delint
Diffstat (limited to 'lib/libc/stdio/fwrite.c')
| -rw-r--r-- | lib/libc/stdio/fwrite.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdio/fwrite.c b/lib/libc/stdio/fwrite.c index 405627cd254..59f992ebc20 100644 --- a/lib/libc/stdio/fwrite.c +++ b/lib/libc/stdio/fwrite.c @@ -1,4 +1,4 @@ -/* $NetBSD: fwrite.c,v 1.7 1998/01/19 07:38:49 jtc Exp $ */ +/* $NetBSD: fwrite.c,v 1.8 1998/11/15 17:19:53 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)fwrite.c 8.1 (Berkeley) 6/4/93"; #else -__RCSID("$NetBSD: fwrite.c,v 1.7 1998/01/19 07:38:49 jtc Exp $"); +__RCSID("$NetBSD: fwrite.c,v 1.8 1998/11/15 17:19:53 christos Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -64,6 +64,7 @@ fwrite(buf, size, count, fp) struct __suio uio; struct __siov iov; + /* LINTED we don't play with buf */ iov.iov_base = (void *)buf; uio.uio_resid = iov.iov_len = n = count * size; uio.uio_iov = &iov; |
