OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [execve.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  execve() - POSIX 1003.1b 3.1.2
3
 *
4
 *  execve.c,v 1.3 2001/01/24 14:17:28 joel Exp
5
 */
6
 
7
#if HAVE_CONFIG_H
8
#include "config.h"
9
#endif
10
 
11
#include <errno.h>
12
 
13
int execve(
14
  const char *path,
15
  char *const argv[],
16
  char *const envp[]
17
)
18
{
19
  errno = ENOSYS;
20
  return -1;
21
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.