source: rtems/c/src/exec/posix/src/execve.c @ 64f55e7

4.104.114.84.95
Last change on this file since 64f55e7 was 97149ba, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/98 at 13:17:32

Added ENOSYS stubs for a number of process routines.

  • Property mode set to 100644
File size: 195 bytes
Line 
1/*
2 *  execve() - POSIX 1003.1b 3.1.2
3 *
4 *  $Id$
5 */
6
7#include <errno.h>
8
9int execve(
10  const char *path,
11  char *const argv[],
12  char *const envp[],
13  ...
14)
15{
16  errno = ENOSYS;
17  return -1;
18}
Note: See TracBrowser for help on using the repository browser.