summaryrefslogtreecommitdiff
path: root/lib/libc/sys/Lint_exect.c
blob: 799107a44ed1c7556f858232a136d29d9f94cdc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* $NetBSD: Lint_exect.c,v 1.2 2000/06/14 06:49:10 cgd Exp $ */

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <unistd.h>

/*ARGSUSED*/
int
exect(path, argv, envp)
	const char *path;
	char * const * argv;
	char * const * envp;
{
	return (0);
}