diff options
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 |