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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [posix/] [execve.c] - Blame information for rev 816

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 148 jeremybenn
#ifndef _NO_EXECVE
2
 
3
/* execve.c */
4
 
5
/* This and the other exec*.c files in this directory require
6
   the target to provide the _execve syscall.  */
7
 
8
 
9
#include <unistd.h>
10
 
11
 
12
int
13
_DEFUN(execve, (path, argv, envp),
14
      const char *path _AND
15
      char * const argv[] _AND
16
      char * const envp[])
17
{
18
  return _execve (path, argv, envp);
19
}
20
 
21
#endif /* !_NO_EXECVE  */

powered by: WebSVN 2.1.0

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