xref: /original-bsd/lib/libc/mips/sys/exect.s (revision 358f5c7d)
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ralph Campbell.
7 *
8 * %sccs.include.redist.c%
9 */
10
11#include "SYS.h"
12
13#if defined(LIBC_SCCS) && !defined(lint)
14	ASMSTR("@(#)exect.s	5.1 (Berkeley) 02/29/92")
15#endif /* LIBC_SCCS and not lint */
16
17LEAF(exect)
18	li	v0, SYS_execve
19	syscall
20	bne	a3, zero, 1f
21	j	ra
221:
23	j	_cerror
24END(exect)
25