X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;h=673d86a632244dd3fb6566dfc1b2c4e2b58ee758;hb=c8f799d852e3698468a78954d82588e841cc0b70;hp=fab2213efcdb1aa105a525e320077bdf8196a611;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c index fab2213..673d86a 100644 --- a/functions/stdio/putchar.c +++ b/functions/stdio/putchar.c @@ -1,8 +1,14 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ int putchar( int c ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + return (putc(c, stdout)); +} +*/