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

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