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

#include <errno.h>

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