Deleted Added
full compact
asprintf.c (101913) asprintf.c (103012)
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

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

33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
40#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

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

33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/lib/libc/stdio/printf.c 101913 2002-08-15 09:47:10Z robert $");
41__FBSDID("$FreeBSD: head/lib/libc/stdio/printf.c 103012 2002-09-06 11:24:06Z tjr $");
42
43#include <stdio.h>
44#include <stdarg.h>
45
46int
42
43#include <stdio.h>
44#include <stdarg.h>
45
46int
47printf(char const *__restrict fmt, ...)
47printf(char const * __restrict fmt, ...)
48{
49 int ret;
50 va_list ap;
51
52 va_start(ap, fmt);
53 ret = vfprintf(stdout, fmt, ap);
54 va_end(ap);
55 return (ret);
56}
48{
49 int ret;
50 va_list ap;
51
52 va_start(ap, fmt);
53 ret = vfprintf(stdout, fmt, ap);
54 va_end(ap);
55 return (ret);
56}