1 /** @file 2 Implementation of a subroutine version of the macro putc, 3 as declared in <stdio.h>. 4 5 Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR> 6 This program and the accompanying materials are licensed and made available 7 under the terms and conditions of the BSD License that accompanies this 8 distribution. The full text of the license may be found at 9 http://opensource.org/licenses/bsd-license. 10 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 14 Copyright (c) 1990, 1993 15 The Regents of the University of California. All rights reserved. 16 17 This code is derived from software contributed to Berkeley by 18 Chris Torek. 19 20 Redistribution and use in source and binary forms, with or without 21 modification, are permitted provided that the following conditions 22 are met: 23 - Redistributions of source code must retain the above copyright 24 notice, this list of conditions and the following disclaimer. 25 - Redistributions in binary form must reproduce the above copyright 26 notice, this list of conditions and the following disclaimer in the 27 documentation and/or other materials provided with the distribution. 28 - Neither the name of the University nor the names of its contributors 29 may be used to endorse or promote products derived from this software 30 without specific prior written permission. 31 32 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 33 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 34 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 35 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE 36 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 37 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 38 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 39 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 40 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 41 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 42 POSSIBILITY OF SUCH DAMAGE. 43 44 NetBSD: putc.c,v 1.11 2003/08/07 16:43:29 agc Exp 45 putc.c 8.1 (Berkeley) 6/4/93 46 **/ 47 #include <LibConfig.h> 48 49 #include <assert.h> 50 #include <errno.h> 51 #include <stdio.h> 52 #include "reentrant.h" 53 #include "local.h" 54 55 /* 56 * putc. 57 */ 58 #undef putc 59 #undef putc_unlocked 60 61 int 62 putc(int c, FILE *fp) 63 { 64 int r; 65 66 _DIAGASSERT(fp != NULL); 67 if(fp == NULL) { 68 errno = EINVAL; 69 return (EOF); 70 } 71 72 FLOCKFILE(fp); 73 r = __sputc(c, fp); 74 FUNLOCKFILE(fp); 75 return r; 76 } 77 78 int 79 putc_unlocked(int c, FILE *fp) 80 { 81 _DIAGASSERT(fp != NULL); 82 if(fp == NULL) { 83 errno = EINVAL; 84 return (EOF); 85 } 86 87 return (__sputc(c, fp)); 88 } 89