fix: updated gnl include path and function names that caused compilation errors

This commit is contained in:
2025-10-17 08:54:38 +02:00
parent 00d19af02d
commit 83263bb269
4 changed files with 4 additions and 10 deletions

View File

@@ -69,7 +69,7 @@ static char *resolve_cmd_path(char const *cmd, char const *path)
i = 0;
while (path_splitted[i])
{
abs_path = ft_strjoin_mul(
abs_path = ft_strnjoin(
3, (char *)path_splitted[i], "/", (char *)cmd);
if (access(abs_path, X_OK) != -1)
break ;