1/* 2 * Copyright (c) 1983 Regents of the University of California. 3 * All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 */ 7 8#if defined(SYSLIBC_SCCS) && !defined(lint) 9 .asciz "@(#)execle.s 5.6 (Berkeley) 06/01/90" 10#endif /* SYSLIBC_SCCS and not lint */ 11 12#include "SYS.h" 13 14ENTRY(execle) 15 movl (ap),r0 16 pushl (ap)[r0] 17 pushab 8(ap) 18 pushl 4(ap) 19 calls $3,_execve 20 ret # execle(file, arg1, arg2, ..., env); 21