source: rtems/c/src/lib/libc/_execve.c @ c4638fff

4.104.114.84.95
Last change on this file since c4638fff was c4638fff, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/98 at 17:39:59

new file to support execv family support in newlib

  • Property mode set to 100644
File size: 571 bytes
Line 
1#include <rtems.h>
2
3#if defined(RTEMS_NEWLIB)
4/*
5 *  RTEMS Dummy _execveImplementation
6 *
7 *
8 *  COPYRIGHT (c) 1989-1998.
9 *  On-Line Applications Research Corporation (OAR).
10 *  Copyright assigned to U.S. Government, 1994.
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.OARcorp.com/rtems/license.html.
15 *
16 *  $Id$
17 */
18
19#include <unistd.h>
20#include <errno.h>
21
22int _execve(
23  const char *path,
24  char *const argv[],
25  char *const environ[]
26)
27{
28  errno = ENOSYS;
29  return -1;
30}
31#endif
Note: See TracBrowser for help on using the repository browser.