forked from KolibriOS/kolibrios
11 lines
145 B
C
11 lines
145 B
C
|
#include <stdio.h>
|
||
|
int fputc(int c,FILE* file)
|
||
|
{
|
||
|
dword res;
|
||
|
|
||
|
res = fwrite(&c, 1, 1, file);
|
||
|
if (res < 1) return EOF;
|
||
|
|
||
|
return c;
|
||
|
}
|