mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
d9e4104b31
* libc/sys/h8300hms/close.S, libc/sys/h8300hms/fstat.S, libc/sys/h8300hms/lseek.S, libc/sys/h8300hms/open.S, libc/sys/h8300hms/read.S, libc/sys/h8300hms/stat.S, libc/sys/h8300hms/write.S, libc/sys/h8300hms/crt0.S: Use it.
19 lines
305 B
ArmAsm
19 lines
305 B
ArmAsm
;off_t lseek(int fildes, off_t offset, int whence);
|
|
;Integer arguments have to be zero extended.
|
|
|
|
#include "setarch.h"
|
|
|
|
.section .text
|
|
.align 2
|
|
.global __lseek
|
|
__lseek:
|
|
#if defined(__H8300H__) || defined(__H8300S__)
|
|
#if __INT_MAX__ == 32767
|
|
extu.l er0
|
|
extu.l er2
|
|
#endif
|
|
#endif
|
|
jsr @@0xc8
|
|
rts
|
|
.end
|