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

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