Deleted Added
full compact
fputc.c (92889) fputc.c (92986)
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
39static char sccsid[] = "@(#)fputc.c 8.1 (Berkeley) 6/4/93";
38static char sccsid[] = "@(#)fputc.c 8.1 (Berkeley) 6/4/93";
40#endif
41static const char rcsid[] =
42 "$FreeBSD: head/lib/libc/stdio/fputc.c 92889 2002-03-21 18:49:23Z obrien $";
43#endif /* LIBC_SCCS and not lint */
39#endif /* LIBC_SCCS and not lint */
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/lib/libc/stdio/fputc.c 92986 2002-03-22 21:53:29Z obrien $");
44
45#include "namespace.h"
46#include <stdio.h>
47#include "un-namespace.h"
48#include "libc_private.h"
49
50int
51fputc(c, fp)
52 int c;
53 FILE *fp;
54{
55 int retval;
56 FLOCKFILE(fp);
57 retval = putc(c, fp);
58 FUNLOCKFILE(fp);
59 return (retval);
60}
42
43#include "namespace.h"
44#include <stdio.h>
45#include "un-namespace.h"
46#include "libc_private.h"
47
48int
49fputc(c, fp)
50 int c;
51 FILE *fp;
52{
53 int retval;
54 FLOCKFILE(fp);
55 retval = putc(c, fp);
56 FUNLOCKFILE(fp);
57 return (retval);
58}