Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1464 → Rev 1465

/uspace/trunk/libc/generic/io/io.c
92,3 → 92,15
return EOF;
}
 
int getchar(void)
{
unsigned char c;
if (read(0, (void *)&c , 1) == 1) {
return c;
}
return EOF;
}