Magomed Kostoev (mkostoevr)
1f4d74f500
git-svn-id: svn://kolibrios.org@8622 a494cfbc-eb01-0410-851d-a64ba20cac60
9 lines
146 B
C
9 lines
146 B
C
#include <stdio.h>
|
|
|
|
int fputc(int sym, FILE *stream)
|
|
{
|
|
if(!fwrite(&sym, sizeof(char), 1, stream)){
|
|
return EOF;
|
|
}
|
|
return sym;
|
|
} |