V9/libc/sys/stat.s

# C library -- stat

# error = stat(string, statbuf);

# char statbuf[36]

	stat = 18
.globl	_stat
.globl  cerror

_stat:
	pea	stat
	trap	#0
	bcc 	noerror
	jmp 	cerror
noerror:
	clrl	d0
	rts