xref: /minix3/lib/libc/sys/Lint_exect.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1 /* $NetBSD: Lint_exect.c,v 1.2 2000/06/14 06:49:10 cgd Exp $ */
2 
3 /*
4  * This file placed in the public domain.
5  * Chris Demetriou, November 5, 1997.
6  */
7 
8 #include <unistd.h>
9 
10 /*ARGSUSED*/
11 int
exect(path,argv,envp)12 exect(path, argv, envp)
13 	const char *path;
14 	char * const * argv;
15 	char * const * envp;
16 {
17 	return (0);
18 }
19