| ... | ... | @@ -1753,8 +1753,6 @@ pub const ExecveError = error{ |
| 1753 | 1753 | NameTooLong, |
| 1754 | 1754 | } || UnexpectedError; |
| 1755 | 1755 | |
| 1756 | | /// Like `execve` except the parameters are null-terminated, |
| 1757 | | /// matching the syscall API on all targets. This removes the need for an allocator. |
| 1758 | 1756 | /// This function ignores PATH environment variable. See `execvpeZ` for that. |
| 1759 | 1757 | pub fn execveZ( |
| 1760 | 1758 | path: [*:0]const u8, |
| ... | ... | @@ -1852,8 +1850,6 @@ pub fn execvpeZ_expandArg0( |
| 1852 | 1850 | return err; |
| 1853 | 1851 | } |
| 1854 | 1852 | |
| 1855 | | /// Like `execvpe` except the parameters are null-terminated, |
| 1856 | | /// matching the syscall API on all targets. This removes the need for an allocator. |
| 1857 | 1853 | /// This function also uses the PATH environment variable to get the full path to the executable. |
| 1858 | 1854 | /// If `file` is an absolute path, this is the same as `execveZ`. |
| 1859 | 1855 | pub fn execvpeZ( |