X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;h=673d86a632244dd3fb6566dfc1b2c4e2b58ee758;hp=fab2213efcdb1aa105a525e320077bdf8196a611;hb=refs%2Ftags%2FOLD;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec 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)); +} +*/