summaryrefslogtreecommitdiffstats
path: root/src/m_minishell.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/m_minishell.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/m_minishell.c b/src/m_minishell.c
index e9475b3..6227e3d 100644
--- a/src/m_minishell.c
+++ b/src/m_minishell.c
@@ -11,7 +11,6 @@
/* ************************************************************************** */
#include <libft.h>
-#include <stdint.h>
#include <unistd.h>
#include <string.h>
#include <unistd.h>
@@ -25,7 +24,7 @@
int main(int argc, char *const argv[], char *const envp[])
{
- int32_t ret;
+ int ret;
t_msh *msh;
if ((msh = s_init_msh(argc, argv, envp)) == NULL)