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

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