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

pipe.s « sysvi386 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6365bcbe6bb5fe909b9700fd0e35b101951409ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
	.globl	_pipe
	.globl	pipe
_pipe:
pipe:	
	movl	$0x2a, %eax
	lcall	$7,$0
	jb	_cerror
	movl	4(%esp), %ecx
	movl	(%ecx), %eax
	movl	4(%ecx), %edx
	xor	%eax, %eax
	ret