summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/execvp.c
blob: a9d7694fbd8e9dd814afaffbe5ab6fcad300988d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 *  execvp() - POSIX 1003.1b 3.1.2
 *
 *  $Id$
 */

#include <errno.h>

int execvp(
  const char *path,
  char const *argv[]
)
{
  errno = ENOSYS;
  return -1;
}