source: rtems/c/src/exec/posix/src/execv.c @ 781262bb

4.104.114.84.95
Last change on this file since 781262bb was 781262bb, checked in by Joel Sherrill <joel.sherrill@…>, on 10/31/00 at 16:33:48

2000-10-30 Joel Sherrill <joel@…>

  • include/Makefile.am: Updated to reflect files merged into newlib. This resulted in some definitions moving to other files and thus some secondary effects in RTEMS source code.
  • include/unistd.h: Removed. Now use newlib's.
  • include/rtems/posix/mqueue.h: Add include of <signal.h>.
  • include/rtems/posix/threadsup.h: Add include of <sys/signal.h>
  • src/execv.c: Corrected prototype to agree with newlib.
  • src/execve.c: Corrected prototype to agree with newlib.
  • src/execvp.c: Corrected prototype to agree with newlib.
  • src/psignal.c: Rewrote reference to <siginfo.h> in comment since that file no longer exists.
  • src/pthreadkill.c: Added include of <signal.h>.
  • src/sigaction.c: Added include of <signal.h>.
  • src/sigtimedwait.c: Rewrote reference to <siginfo.h> in comment since that file no longer exists. *
  • Property mode set to 100644
File size: 164 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  errno = ENOSYS;
15  return -1;
16}
Note: See TracBrowser for help on using the repository browser.