Deleted Added
full compact
getchar.c (92986) getchar.c (101776)
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[] = "@(#)getchar.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[] = "@(#)getchar.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/getchar.c 92986 2002-03-22 21:53:29Z obrien $");
41__FBSDID("$FreeBSD: head/lib/libc/stdio/getchar.c 101776 2002-08-13 09:30:41Z tjr $");
42
43/*
44 * A subroutine version of the macro getchar.
45 */
46#include "namespace.h"
47#include <stdio.h>
48#include "un-namespace.h"
42
43/*
44 * A subroutine version of the macro getchar.
45 */
46#include "namespace.h"
47#include <stdio.h>
48#include "un-namespace.h"
49#include "local.h"
49#include "libc_private.h"
50
51#undef getchar
52
53int
54getchar()
55{
56 int retval;
57 FLOCKFILE(stdin);
50#include "libc_private.h"
51
52#undef getchar
53
54int
55getchar()
56{
57 int retval;
58 FLOCKFILE(stdin);
59 ORIENT(stdin, -1);
58 retval = getc(stdin);
59 FUNLOCKFILE(stdin);
60 return (retval);
61}
60 retval = getc(stdin);
61 FUNLOCKFILE(stdin);
62 return (retval);
63}