V10/libc/sys/execle.s

Compare this file to the similar file:
Show the results in this format:

# C library -- execle

# execle(file, arg1, arg2, ... , env);
#

.globl	_execle

_execle:
	.word	0x0000
	movl	(ap),r0  #  nargs
	pushl	(ap)[r0]  #  env
	pushab	8(ap)  # argv
	pushl	4(ap)  #  file
	calls	$3,_execve
	ret