summaryrefslogtreecommitdiff
path: root/lib/libc/sys/Lint_exect.c
blob: 65d49c4ec960ef873bb594045170ef74807f3a4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*	$OpenBSD: Lint_exect.c,v 1.2 2004/09/14 22:18:56 deraadt Exp $	*/
/*	$NetBSD: Lint_exect.c,v 1.1 1997/11/06 00:52:54 cgd Exp $	*/

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

#include <unistd.h>

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