source: trunk/sys/dietlibc/execv.c @ 370

Last change on this file since 370 was 1, checked in by alain, 7 years ago

First import

File size: 249 bytes
Line 
1#include <limits.h>
2#include <stdlib.h>
3#include <string.h>
4#include <unistd.h>
5#include <errno.h>
6#include "dietfeatures.h"
7
8int execv(const char *file, char *const argv[]) {
9  if (execve(file,argv,environ)==-1) {
10    return -1;
11  }
12  return -1;
13}
Note: See TracBrowser for help on using the repository browser.