diff options
Diffstat (limited to '')
-rw-r--r-- | src/s_lredir.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/s_lredir.h b/src/s_lredir.h index 3349329..4b82511 100644 --- a/src/s_lredir.h +++ b/src/s_lredir.h @@ -13,10 +13,12 @@ #ifndef S_LREDIR_H #define S_LREDIR_H +#include <stdint.h> + #include "s_struct.h" -void s_lredir_add_back(t_lredir **lredir, t_lredir *new) -void s_lredir_clear(struct s_lredir **lredir) -struct s_lredir *s_lredir_new(const char path[], int32_t fd, int8_t redir) +void s_lredir_add_back(t_lredir **lredir, t_lredir *new); +void s_lredir_clear(struct s_lredir **lredir); +struct s_lredir *s_lredir_new(const char path[], int32_t fd, int8_t redir); #endif |