source: rtems/cpukit/posix/src/execve.c @ e7bd66a7

4.104.114.84.95
Last change on this file since e7bd66a7 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 234 bytes
Line 
1/*
2 *  execve() - POSIX 1003.1b 3.1.2
3 *
4 *  $Id$
5 */
6
7#if HAVE_CONFIG_H
8#include "config.h"
9#endif
10
11#include <errno.h>
12
13int execve(
14  const char *path,
15  char *const argv[],
16  char *const envp[]
17)
18{
19  errno = ENOSYS;
20  return -1;
21}
Note: See TracBrowser for help on using the repository browser.