Deleted Added
full compact
putw.c (256281) putw.c (269085)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#if defined(LIBC_SCCS) && !defined(lint)
34static char sccsid[] = "@(#)putw.c 8.1 (Berkeley) 6/4/93";
35#endif /* LIBC_SCCS and not lint */
36#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#if defined(LIBC_SCCS) && !defined(lint)
34static char sccsid[] = "@(#)putw.c 8.1 (Berkeley) 6/4/93";
35#endif /* LIBC_SCCS and not lint */
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: stable/10/lib/libc/stdio/putw.c 249810 2013-04-23 14:36:44Z emaste $");
37__FBSDID("$FreeBSD: stable/10/lib/libc/stdio/putw.c 269085 2014-07-25 03:24:00Z pfg $");
38
39#include "namespace.h"
40#include <stdio.h>
41#include "un-namespace.h"
42#include "fvwrite.h"
43#include "libc_private.h"
44
45int
46putw(int w, FILE *fp)
47{
48 int retval;
49 struct __suio uio;
50 struct __siov iov;
51
52 iov.iov_base = &w;
38
39#include "namespace.h"
40#include <stdio.h>
41#include "un-namespace.h"
42#include "fvwrite.h"
43#include "libc_private.h"
44
45int
46putw(int w, FILE *fp)
47{
48 int retval;
49 struct __suio uio;
50 struct __siov iov;
51
52 iov.iov_base = &w;
53 iov.iov_len = uio.uio_resid = sizeof(w);
53 uio.uio_resid = iov.iov_len = sizeof(w);
54 uio.uio_iov = &iov;
55 uio.uio_iovcnt = 1;
56 FLOCKFILE(fp);
57 retval = __sfvwrite(fp, &uio);
58 FUNLOCKFILE(fp);
59 return (retval);
60}
54 uio.uio_iov = &iov;
55 uio.uio_iovcnt = 1;
56 FLOCKFILE(fp);
57 retval = __sfvwrite(fp, &uio);
58 FUNLOCKFILE(fp);
59 return (retval);
60}