summaryrefslogtreecommitdiffstats
path: root/src/b_export.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/b_export.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/b_export.c b/src/b_export.c
index 04a7bd0..f5d3360 100644
--- a/src/b_export.c
+++ b/src/b_export.c
@@ -12,7 +12,6 @@
#include <libft.h>
#include <stdlib.h>
-#include <stdint.h>
#include "b_env.h"
#include "b_export_next.h"
@@ -101,10 +100,10 @@ static void b_classic_export(char *ptr[], t_msh *msh)
}
}
-uint8_t b_export(char *args[], t_msh *msh)
+unsigned char b_export(char *args[], t_msh *msh)
{
char **ptr;
- uint8_t r;
+ unsigned char r;
if (args[0] == NULL)
return (b_env(NULL, msh));