| 191 | ****************************************************************************/ |
| 192 | |
| 193 | int exec_spawn(FAR const char *filename, FAR char * const *argv, |
| 194 | FAR char * const *envp, FAR const struct symtab_s *exports, |
| 195 | int nexports, FAR const posix_spawn_file_actions_t *actions, |
| 196 | FAR const posix_spawnattr_t *attr) |
| 197 | { |
| 198 | return exec_internal(filename, argv, envp, |
| 199 | exports, nexports, actions, attr, true); |
| 200 | } |
| 201 | |
| 202 | /**************************************************************************** |
| 203 | * Name: exec |
no test coverage detected