putchar.c revision da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968
10139N/A/***********************************************************************
10139N/A* *
10139N/A* This software is part of the ast package *
12197N/A* Copyright (c) 1985-2007 AT&T Knowledge Ventures *
10139N/A* and is licensed under the *
10139N/A* Common Public License, Version 1.0 *
10139N/A* by AT&T Knowledge Ventures *
17185N/A* *
10139N/A* A copy of the License is available at *
17178N/A* http://www.opensource.org/licenses/cpl1.0.txt *
17178N/A* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
17178N/A* *
10139N/A* Information and Software Systems Research *
10139N/A* AT&T Research *
10139N/A* Florham Park NJ *
16135N/A* *
10139N/A* Glenn Fowler <gsf@research.att.com> *
10139N/A* David Korn <dgk@research.att.com> *
10139N/A* Phong Vo <kpv@research.att.com> *
10139N/A* *
14573N/A***********************************************************************/
10139N/A#pragma prototyped
10139N/A
10139N/A#include "stdhdr.h"
10139N/A
10139N/A#if !_UWIN
10139N/A
10139N/ANoN(putchar)
10139N/A
10139N/A#else
10139N/A
10139N/A#undef putchar
10139N/A
10139N/Aint
10139N/Aputchar(int c)
10139N/A{
10139N/A return sfputc(sfstdout, c);
10139N/A}
10139N/A
10139N/A#endif
10139N/A