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