Deleted Added
full compact
printf.c (16336) printf.c (16586)
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

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
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)
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

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
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)
38#if 0
38static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 6/4/93";
39static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 6/4/93";
40#endif
41static const char rcsid[] =
42 "$Id$";
39#endif /* LIBC_SCCS and not lint */
40
41#include <stdio.h>
42#if __STDC__
43#include <stdarg.h>
44#else
45#include <varargs.h>
46#endif
47
43#endif /* LIBC_SCCS and not lint */
44
45#include <stdio.h>
46#if __STDC__
47#include <stdarg.h>
48#else
49#include <varargs.h>
50#endif
51
52int
48#if __STDC__
53#if __STDC__
49int printf(char const *fmt, ...)
54printf(char const *fmt, ...)
50#else
51printf(fmt, va_alist)
52 char *fmt;
53 va_dcl
54#endif
55{
56 int ret;
57 va_list ap;
58
59#if __STDC__
60 va_start(ap, fmt);
61#else
62 va_start(ap);
63#endif
64 ret = vfprintf(stdout, fmt, ap);
65 va_end(ap);
66 return (ret);
67}
55#else
56printf(fmt, va_alist)
57 char *fmt;
58 va_dcl
59#endif
60{
61 int ret;
62 va_list ap;
63
64#if __STDC__
65 va_start(ap, fmt);
66#else
67 va_start(ap);
68#endif
69 ret = vfprintf(stdout, fmt, ap);
70 va_end(ap);
71 return (ret);
72}