* common.din: Export posix_spawn[...] functions.

* exec.cc (execve): Add EXPORT_ALIAS _execve.
	* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
	* posix.sgml (std-susv4):  Add posix_spawn[...] here.
	(std-notimpl): Drop here.
This commit is contained in:
Corinna Vinschen
2013-11-26 17:11:09 +00:00
parent d12e1c0670
commit bb9d95eb38
6 changed files with 56 additions and 2 deletions

View File

@@ -93,6 +93,7 @@ execve (const char *path, char *const argv[], char *const envp[])
MALLOC_CHECK;
return spawnve (_P_OVERLAY, path, argv, envp);
}
EXPORT_ALIAS (execve, _execve) /* For newlib */
extern "C" int
execvp (const char *file, char * const *argv)