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

close.s « sysvi386 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e46c0c13dd215d6c9d762be0d2eaded36bcdc457 (plain)
1
2
3
4
5
6
7
8
9
	.globl	_close
	.globl	close
_close:
close:	
	movl	$6, %eax
	lcall	$7,$0
	jb	_cerror
	xor	%eax, %eax
	ret