X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;fp=functions%2Fstdio%2Fputc.c;h=6bb2e9e58ce2e9b772687e9920c42b069ddf87d1;hb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;hp=c1f3fc279eef8fae8b96fdb77db77829a7466fa5;hpb=702e9008178bdb5c1b123b963868c946537fb7f5;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 ); }