Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
wrightkhlebisol committed Jul 26, 2023
1 parent 2c949eb commit 9c512a4
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,7 @@ int is_builtin_cmd(char *cmd)
/**
* exec_builtin_cmd - execute builtin commands
* @argv: argument vector - points to arguments entered
<<<<<<< HEAD
* @head: head node
=======
* @head: head of lists.
>>>>>>> e0ec559d5998b75685d75ab581a10646aac9bbfd
*
* Return: void
*/
Expand Down Expand Up @@ -247,14 +243,9 @@ void init_env_list(envstruct *head)
{
char *key = strtok(*environ, "="), *val = strtok(NULL, "=");
head = insert_end(head, key, val);
<<<<<<< HEAD
*environ++;
=======

i++;
>>>>>>> e0ec559d5998b75685d75ab581a10646aac9bbfd
}

}

/**
Expand Down

0 comments on commit 9c512a4

Please sign in to comment.