2021-04-27 18:33:31 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/ksys.h>
|
|
|
|
|
|
|
|
int fputc(int c, FILE *stream)
|
|
|
|
{
|
2021-05-23 17:28:07 +02:00
|
|
|
if(fwrite(&c, sizeof(char), 1, stream)==1){
|
2021-04-27 18:33:31 +02:00
|
|
|
return c;
|
|
|
|
}else{
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
}
|