repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libutil: add O_NOCTTY back to old pty open code
[minix.git]
/
lib
/
libc
/
sys
/
Lint_exect.c
blob
799107a44ed1c7556f858232a136d29d9f94cdc7
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
12
exect
(
path
,
argv
,
envp
)
13
const char
*
path
;
14
char
*
const
*
argv
;
15
char
*
const
*
envp
;
16
{
17
return
(
0
);
18
}