Changeset 404
- Timestamp:
- Jul 16, 2003, 9:07:20 PM (22 years ago)
- Location:
- trunk/src/emx/src/lib/process
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/process/execl.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r403 r404 12 12 /* Note: Passing `arg0' to spawnv() is not portable. */ 13 13 14 result = spawnv (P_OVERLAY, name, &arg0);14 result = spawnv (P_OVERLAY, name, (char * const *) &arg0); 15 15 return result; 16 16 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/execle.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r403 r404 12 12 int result; 13 13 14 va_start (arg_ptr, name);14 va_start (arg_ptr, arg0); 15 15 while (va_arg (arg_ptr, char *) != NULL) 16 16 /* do nothing */; … … 20 20 /* Note: Passing `&arg0' to spawnve() is not portable. */ 21 21 22 result = spawnve (P_OVERLAY, name, &arg0, env_ptr);22 result = spawnve (P_OVERLAY, name, (char * const *)&arg0, env_ptr); 23 23 return result; 24 24 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/execlp.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r403 r404 12 12 /* Note: Passing `&arg0' to spawnvp() is not portable. */ 13 13 14 result = spawnvp (P_OVERLAY, name, &arg0);14 result = spawnvp (P_OVERLAY, name, (char * const *)&arg0); 15 15 return result; 16 16 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/execlpe.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r403 r404 12 12 int result; 13 13 14 va_start (arg_ptr, name);14 va_start (arg_ptr, arg0); 15 15 while (va_arg (arg_ptr, char *) != NULL) 16 16 /* do nothing */; … … 20 20 /* Note: Passing `&arg0' to spawnvpe() is not portable. */ 21 21 22 result = spawnvpe (P_OVERLAY, name, &arg0, env_ptr);22 result = spawnvpe (P_OVERLAY, name, (char * const *)&arg0, env_ptr); 23 23 return result; 24 24 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/spawnl.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r403 r404 12 12 /* Note: Passing `&arg0' to spawnv() is not portable. */ 13 13 14 result = spawnv (mode, name, &arg0);14 result = spawnv (mode, name, (char * const *)&arg0); 15 15 return result; 16 16 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/spawnle.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r403 r404 12 12 int result; 13 13 14 va_start (arg_ptr, name);14 va_start (arg_ptr, arg0); 15 15 while (va_arg (arg_ptr, char *) != NULL) 16 16 /* do nothing */; … … 20 20 /* Note: Passing `&arg0' to spawnve() is not portable. */ 21 21 22 result = spawnve (mode, name, &arg0, env_ptr);22 result = spawnve (mode, name, (char * const *)&arg0, env_ptr); 23 23 return result; 24 24 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/spawnlp.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r403 r404 12 12 /* Note: Passing `&arg0' to spawnvp() is not portable. */ 13 13 14 result = spawnvp (mode, name, &arg0);14 result = spawnvp (mode, name, (char * const *)&arg0); 15 15 return result; 16 16 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/process/spawnlpe.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r403 r404 20 20 /* Note: Passing `&arg0' to spawnvpe() is not portable. */ 21 21 22 result = spawnvpe (mode, name, &arg0, env_ptr);22 result = spawnvpe (mode, name, (char * const *)&arg0, env_ptr); 23 23 return result; 24 24 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.