X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=01acfd89e3e35e9b16b475fd986cde67039a6b11;hp=83b40860b6fba0d1a5c7e891a01c78a6e2f5469f;hb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec 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)); +} +*/