forked from KolibriOS/kolibrios
b5b499b8c8
Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
198 B
C
12 lines
198 B
C
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <sys/ksys.h>
|
|
|
|
int fputc(int c, FILE *stream)
|
|
{
|
|
if(fwrite(&c, sizeof(char), 1, stream)==1){
|
|
return c;
|
|
}else{
|
|
return EOF;
|
|
}
|
|
} |