1*29452Ssam/* 2*29452Ssam * Copyright (c) 1983 Regents of the University of California. 3*29452Ssam * All rights reserved. The Berkeley software License Agreement 4*29452Ssam * specifies the terms and conditions for redistribution. 5*29452Ssam */ 6*29452Ssam 7*29452Ssam#ifdef SYSLIBC_SCCS 8*29452Ssam_sccsid:.asciz "@(#)execv.s 5.1 (Berkeley) 07/02/86" 9*29452Ssam#endif SYSLIBC_SCCS 10*29452Ssam 11*29452Ssam#include "SYS.h" 12*29452Ssam 13*29452SsamENTRY(execv) 14*29452Ssam .globl _environ 15*29452Ssam pushl _environ 16*29452Ssam pushl 8(fp) 17*29452Ssam pushl 4(fp) 18*29452Ssam calls $16,_execve 19*29452Ssam ret # execv(file, argv) 20