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