Deleted Added
full compact
fwrite.c (249808) fwrite.c (249810)
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[] = "@(#)fwrite.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[] = "@(#)fwrite.c 8.1 (Berkeley) 6/4/93";
35#endif /* LIBC_SCCS and not lint */
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: head/lib/libc/stdio/fwrite.c 249808 2013-04-23 13:33:13Z emaste $");
37__FBSDID("$FreeBSD: head/lib/libc/stdio/fwrite.c 249810 2013-04-23 14:36:44Z emaste $");
38
39#include "namespace.h"
40#include <errno.h>
41#include <stdint.h>
42#include <stdio.h>
43#include "un-namespace.h"
44#include "local.h"
45#include "fvwrite.h"
46#include "libc_private.h"
47
48/*
49 * Write `count' objects (each size `size') from memory to the given file.
50 * Return the number of whole objects written.
51 */
52size_t
38
39#include "namespace.h"
40#include <errno.h>
41#include <stdint.h>
42#include <stdio.h>
43#include "un-namespace.h"
44#include "local.h"
45#include "fvwrite.h"
46#include "libc_private.h"
47
48/*
49 * Write `count' objects (each size `size') from memory to the given file.
50 * Return the number of whole objects written.
51 */
52size_t
53fwrite(buf, size, count, fp)
54 const void * __restrict buf;
55 size_t size, count;
56 FILE * __restrict fp;
53fwrite(const void * __restrict buf, size_t size, size_t count, FILE * __restrict fp)
57{
58 size_t n;
59 struct __suio uio;
60 struct __siov iov;
61
62 /*
63 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
64 */

--- 35 unchanged lines hidden ---
54{
55 size_t n;
56 struct __suio uio;
57 struct __siov iov;
58
59 /*
60 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
61 */

--- 35 unchanged lines hidden ---