X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=01acfd89e3e35e9b16b475fd986cde67039a6b11;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=83b40860b6fba0d1a5c7e891a01c78a6e2f5469f;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/stdio/putc.c b/functions/stdio/putc.c index 83b4086..01acfd8 100644 --- a/functions/stdio/putc.c +++ b/functions/stdio/putc.c @@ -6,3 +6,9 @@ // ---------------------------------------------------------------------------- int putc( int c, FILE * stream ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + return (fputc(c, stream)); +} +*/