forked from KolibriOS/kolibrios
da310946f0
- Fixed fwrite. - Added strcat to the export table. - Fixed two functions in ksys.h. - Added binaries for autobuild git-svn-id: svn://kolibrios.org@8705 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
165 B
C
12 lines
165 B
C
#include <stdio.h>
|
|
|
|
int fgetc(FILE* stream)
|
|
{
|
|
int c=EOF;
|
|
if(fwrite(&c, sizeof(int), 1, stream)==1){
|
|
return c;
|
|
}else{
|
|
return EOF;
|
|
}
|
|
}
|