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

Subversion Repositories or1k

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 158 chris
/*
2
 *  execve() - POSIX 1003.1b 3.1.2
3
 *
4 208 chris
 *  $Id: execve.c,v 1.2 2001-09-27 11:59:17 chris Exp $
5 158 chris
 */
6
 
7
#include <errno.h>
8
 
9
int execve(
10
  const char *path,
11
  char *const argv[],
12
  char *const envp[],
13
  ...
14
)
15
{
16
  errno = ENOSYS;
17
  return -1;
18
}

powered by: WebSVN 2.1.0

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