Deleted Added
full compact
getc.c (50476) getc.c (71579)
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

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

34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38#if 0
39static char sccsid[] = "@(#)getc.c 8.1 (Berkeley) 6/4/93";
40#endif
41static const char rcsid[] =
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

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

34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38#if 0
39static char sccsid[] = "@(#)getc.c 8.1 (Berkeley) 6/4/93";
40#endif
41static const char rcsid[] =
42 "$FreeBSD: head/lib/libc/stdio/getc.c 50476 1999-08-28 00:22:10Z peter $";
42 "$FreeBSD: head/lib/libc/stdio/getc.c 71579 2001-01-24 13:01:12Z deischen $";
43#endif /* LIBC_SCCS and not lint */
44
43#endif /* LIBC_SCCS and not lint */
44
45#include "namespace.h"
45#include <stdio.h>
46#include <stdio.h>
47#include "un-namespace.h"
46#include "libc_private.h"
47
48#include "libc_private.h"
49
48/*
49 * A subroutine version of the macro getc.
50 */
51#undef getc
50#undef getc
52
53int
54getc(fp)
55 register FILE *fp;
56{
57 int retval;
58 FLOCKFILE(fp);
59 retval = __sgetc(fp);
60 FUNLOCKFILE(fp);
61 return (retval);
62}
51int
52getc(fp)
53 register FILE *fp;
54{
55 int retval;
56 FLOCKFILE(fp);
57 retval = __sgetc(fp);
58 FUNLOCKFILE(fp);
59 return (retval);
60}