diff options
author | nate <nate@FreeBSD.org> | 1995-03-19 21:47:51 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1995-03-19 21:47:51 +0000 |
commit | a57e4a521e54da58b6e4fc379506133acc8bc6b3 (patch) | |
tree | b141c70651f177da29b6fa5b3d250ac64d77615f /lib/libcurses/_putchar.c | |
parent | cd13439f7fcbddc784167aae6bfd32eb8770b780 (diff) | |
download | FreeBSD-src-a57e4a521e54da58b6e4fc379506133acc8bc6b3.zip FreeBSD-src-a57e4a521e54da58b6e4fc379506133acc8bc6b3.tar.gz |
Separated out the _putchar & __cputchar() routines so that programs such
as tn3270 can replace _putchar(0 with their own routine and still keep
using the __cputchar() routine used by all of the other curses routines.
Reviewed by: "Andrey A. Chernov, Black Mage" <ache@astral.msk.su>
Diffstat (limited to 'lib/libcurses/_putchar.c')
-rw-r--r-- | lib/libcurses/_putchar.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/libcurses/_putchar.c b/lib/libcurses/_putchar.c new file mode 100644 index 0000000..ff90d2c --- /dev/null +++ b/lib/libcurses/_putchar.c @@ -0,0 +1,47 @@ +/* + * Copyright (c) 1981, 1993, 1994 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#ifndef lint +static char sccsid[] = "@(#)_putchar.c 8.2 (Berkeley) 5/4/94"; +#endif /* not lint */ + +#include "curses.h" + +int +_putchar(ch) + int ch; +{ + __cputchar(ch); + return 0; +} + |