Deleted Added
full compact
putc.c (127100) putc.c (127198)
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[] = "@(#)putc.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[] = "@(#)putc.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/putc.c 127100 2004-03-17 01:43:08Z tjr $");
41__FBSDID("$FreeBSD: head/lib/libc/stdio/putc.c 127198 2004-03-19 09:04:56Z tjr $");
42
43#include "namespace.h"
44#include <stdio.h>
45#include "un-namespace.h"
46#include "local.h"
47#include "libc_private.h"
48
49#undef putc
50
51int
52putc(c, fp)
53 int c;
54 FILE *fp;
55{
56 int retval;
57 FLOCKFILE(fp);
42
43#include "namespace.h"
44#include <stdio.h>
45#include "un-namespace.h"
46#include "local.h"
47#include "libc_private.h"
48
49#undef putc
50
51int
52putc(c, fp)
53 int c;
54 FILE *fp;
55{
56 int retval;
57 FLOCKFILE(fp);
58 ORIENT(fp, -1);
58 /* Orientation set by __sputc() when buffer is full. */
59 /* ORIENT(fp, -1); */
59 retval = __sputc(c, fp);
60 FUNLOCKFILE(fp);
61 return (retval);
62}
60 retval = __sputc(c, fp);
61 FUNLOCKFILE(fp);
62 return (retval);
63}