diff options
author | John van Groningen | 2003-10-09 11:55:33 +0000 |
---|---|---|
committer | John van Groningen | 2003-10-09 11:55:33 +0000 |
commit | 411b4f3549944aa8c5fe47eca2b20f0889cbce18 (patch) | |
tree | 7177abce814989489b245ee7ab66c4d16c420b9f /ifileIO3.s | |
parent | files for windows (diff) |
no flushF for linux
Diffstat (limited to 'ifileIO3.s')
-rw-r--r-- | ifileIO3.s | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -55,8 +55,9 @@ fwritestring_error: .globl positionF .globl seekF .globl shareF +#ifndef LINUX .globl flushF - +#endif .globl openSF .globl readSFC .globl readSFI @@ -96,8 +97,9 @@ fwritestring_error: .globl @file_position .globl @file_seek .globl @file_share +#ifndef LINUX .globl @flush_file_buffer - +#endif .globl @open_s_file .globl @file_read_s_char .globl @file_read_s_int @@ -504,6 +506,7 @@ shareF: movl $-1,d0 ret +#ifndef LINUX flushF: pushl d1 call @flush_file_buffer @@ -512,6 +515,7 @@ flushF: movl $-1,4(sp) movl a2,(sp) ret +#endif openSF: pushl d0 addl $4,a0 |