X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;h=7025698172c9d1a12b9545ae79d2832e61657a56;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=fab2213efcdb1aa105a525e320077bdf8196a611;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c index fab2213..7025698 100644 --- a/functions/stdio/putchar.c +++ b/functions/stdio/putchar.c @@ -6,3 +6,9 @@ // ---------------------------------------------------------------------------- int putchar( int c ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + return (putc(c, stdout)); +} +*/