fputc.c (333fc21e3cd79bca0c94d7722c5a56cb5ad078d1) fputc.c (e74101e4eff767325553039def89de70b70f36d3)
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

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

38static char sccsid[] = "@(#)fputc.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD$");
42
43#include "namespace.h"
44#include <stdio.h>
45#include "un-namespace.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

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

38static char sccsid[] = "@(#)fputc.c 8.1 (Berkeley) 6/4/93";
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD$");
42
43#include "namespace.h"
44#include <stdio.h>
45#include "un-namespace.h"
46#include "local.h"
46#include "libc_private.h"
47
48int
49fputc(c, fp)
50 int c;
51 FILE *fp;
52{
53 int retval;
54 FLOCKFILE(fp);
47#include "libc_private.h"
48
49int
50fputc(c, fp)
51 int c;
52 FILE *fp;
53{
54 int retval;
55 FLOCKFILE(fp);
56 ORIENT(fp, -1);
55 retval = putc(c, fp);
56 FUNLOCKFILE(fp);
57 return (retval);
58}
57 retval = putc(c, fp);
58 FUNLOCKFILE(fp);
59 return (retval);
60}