Changed the code so that it better suits the code generation of the compiler
(which means, the resulting code is shorter). git-svn-id: svn://svn.cc65.org/cc65/trunk@5702 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
bfd0f58686
commit
130e8fd090
1 changed files with 5 additions and 4 deletions
|
@ -18,17 +18,18 @@
|
|||
|
||||
|
||||
|
||||
int __fastcall__ fputc (int c, FILE* f)
|
||||
int __fastcall__ fputc (int c, register FILE* f)
|
||||
{
|
||||
/* Check if the file is open or if there is an error condition */
|
||||
if ((f->f_flags & _FOPEN) == 0 || (f->f_flags & (_FERROR | _FEOF)) != 0) {
|
||||
return EOF;
|
||||
goto ReturnEOF;
|
||||
}
|
||||
|
||||
/* Write the byte (knows about byte order!) */
|
||||
if (write (f->f_fd, &c, 1) <= 0) {
|
||||
/* Write the byte */
|
||||
if (write (f->f_fd, &c, 1) != 1) {
|
||||
/* Error */
|
||||
f->f_flags |= _FERROR;
|
||||
ReturnEOF:
|
||||
return EOF;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue