xref: /csrg-svn/lib/libc/tahoe/sys/execv.s (revision 42648)
129452Ssam/*
229452Ssam * Copyright (c) 1983 Regents of the University of California.
334389Sbostic * All rights reserved.
434389Sbostic *
5*42648Sbostic * %sccs.include.redist.c%
629452Ssam */
729452Ssam
834389Sbostic#if defined(SYSLIBC_SCCS) && !defined(lint)
9*42648Sbostic	.asciz "@(#)execv.s	5.4 (Berkeley) 06/01/90"
1034389Sbostic#endif /* SYSLIBC_SCCS and not lint */
1129452Ssam
1229452Ssam#include "SYS.h"
1329452Ssam
1429452SsamENTRY(execv)
1529452Ssam	.globl	_environ
1629452Ssam	pushl	_environ
1729452Ssam	pushl	8(fp)
1829452Ssam	pushl	4(fp)
1929452Ssam	calls	$16,_execve
2029452Ssam	ret			# execv(file, argv)
21