Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fstat.S « h8300hms « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b89df0cbe3f291da60ffa450f5f5f0e1bc2b62b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;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__)
#if __INT_MAX__ == 32767
	extu.l	er0
#endif
#endif
	jsr @@0xcb
	rts
	.end