X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=6bb2e9e58ce2e9b772687e9920c42b069ddf87d1;hb=8fe5c57b4d17e5637dac34f797c6530e1b1ce220;hp=c1f3fc279eef8fae8b96fdb77db77829a7466fa5;hpb=6ca24b75c75b9c6f22e1e69693d326b8e3330841;p=pdclib diff --git a/functions/stdio/putc.c b/functions/stdio/putc.c index c1f3fc2..6bb2e9e 100644 --- a/functions/stdio/putc.c +++ b/functions/stdio/putc.c @@ -10,13 +10,13 @@ #ifndef REGTEST -int putc_unlocked( int c, struct _PDCLIB_file_t * stream ) +int putc_unlocked( int c, FILE * stream ) { return fputc_unlocked( c, stream ); } -int putc( int c, struct _PDCLIB_file_t * stream ) +int putc( int c, FILE * stream ) { return fputc( c, stream ); }