2003-02-26 04:36:29 +08:00
|
|
|
;int close(int fd);
|
|
|
|
;Integer arguments have to be zero extended.
|
|
|
|
|
2003-06-10 15:44:30 +08:00
|
|
|
#include "setarch.h"
|
2003-02-26 04:36:29 +08:00
|
|
|
|
|
|
|
.section .text
|
|
|
|
.align 2
|
|
|
|
.global __close
|
|
|
|
__close:
|
2004-06-23 05:54:52 +08:00
|
|
|
#if defined(__H8300H__) || defined(__H8300S__) || defined (__H8300SX__)
|
2003-02-26 04:36:29 +08:00
|
|
|
#if __INT_MAX__ == 32767
|
|
|
|
extu.l er0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
jsr @@0xc9
|
|
|
|
rts
|
|
|
|
.end
|