Changeset 1291
- Timestamp:
- Mar 15, 2004, 4:04:59 AM (21 years ago)
- Location:
- trunk/src/emx/src/lib/process
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/process/spawnvp.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r1290 r1291 7 7 #include <InnoTekLIBC/logstrict.h> 8 8 9 int _STD(spawnvp) 9 int _STD(spawnvp)(int mode, const char *name, char * const argv[]) 10 10 { 11 11 LIBCLOG_ENTER("mode=%#x name=%s argv=%p\n", mode, name, argv); 12 int rc = spawnvpe 12 int rc = spawnvpe(mode, name, argv, NULL); 13 13 LIBCLOG_RETURN_INT(rc); 14 14 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/spawnvpe.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r1290 r1291 25 25 strcpy(exe, name); 26 26 _defext(exe, "exe"); 27 if ( !_path(path, exe))27 if (_path(path, exe)) 28 28 LIBCLOG_RETURN_INT(-1); 29 29 rc = spawnve(mode, path, argv, envp); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.