renamed to execve to make it more clear

This commit is contained in:
Gani Georgiev
2025-08-22 20:47:58 +03:00
parent 3ca6321907
commit 819ec1ad5c
3 changed files with 4 additions and 3 deletions

View File

@@ -4,6 +4,6 @@ package core
import "errors"
func exec(argv0 string, argv []string, envv []string) error {
func execve(argv0 string, argv []string, envv []string) error {
return errors.ErrUnsupported
}