Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_execve.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6447373eddde323158c8a92d635f745c4a5c415 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <machine/syscall.h>
#include "internal_syscall.h"

/* Transfer control to a new process. Minimal implementation for a
   system without processes from newlib documentation.  */
int
_execve(const char *name, char *const argv[], char *const env[])
{
  errno = ENOMEM;
  return -1;
}