1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- The default configuration options for execvp() are now configurable at

link time.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15112 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-08-01 17:01:14 +00:00
parent 5f42fb06f9
commit 8633c3a77b
8 changed files with 100 additions and 23 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: unistd_execv.c,v 1.1 2006-08-01 14:27:52 obarthel Exp $
* $Id: unistd_execv.c,v 1.2 2006-08-01 17:01:13 obarthel Exp $
*
* :ts=4
*
@ -46,7 +46,7 @@ execv(const char *path,char * const argv[])
{
int result;
result = execve(path,argv,environ);
result = execve(path,argv,NULL /*environ*/);
return(result);
}