summaryrefslogtreecommitdiffstats
path: root/src/m_minishell.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 19:59:20 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 19:59:20 +0100
commitc5aae008dee36276154882d8fd56c3bdeb473474 (patch)
treea40740914847ebf39a5f8cb3acf6a48c8b9d61ef /src/m_minishell.c
parentTODO update (diff)
download42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.gz
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.bz2
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.xz
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.zst
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.zip
Now norme
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)