4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-14 17:59:28 +08:00

19 lines
319 B
ArmAsm
Raw Normal View History

;int fstat(int filedes, struct stat *buf);
;Integer arguments have to be zero extended.
#include "setarch.h"
.section .text
.align 2
.global __fstat
__fstat:
#if defined(__H8300H__) || defined(__H8300S__) || defined (__H8300SX__)
#if __INT_MAX__ == 32767
extu.l er0
#endif
#endif
jsr @@0xcb
rts
.end