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

#include <errno.h>

int execv(
  const char *file,
  char *const argv[],
  ...
)
{
  errno = ENOSYS;
  return -1;
}