source: rtems/c/src/exec/posix/src/execv.c @ b965227f

4.104.114.84.95
Last change on this file since b965227f was b965227f, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/98 at 13:28:28

Now compiles.

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