diff options
Diffstat (limited to '')
-rw-r--r-- | src/u_utils.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/u_utils.c b/src/u_utils.c index b4ef987..745b79c 100644 --- a/src/u_utils.c +++ b/src/u_utils.c @@ -15,6 +15,8 @@ #include <stdint.h> #include <unistd.h> #include <signal.h> +#include <term.h> +#include <curses.h> #include "f_fail.h" #include "s_struct.h" @@ -66,10 +68,3 @@ uint64_t } return (argc); } - -int u_handle_sigwinch(int dummy_signal) -{ - term = getenv(); - tputs(, 1, ft_putchar); - fflush(stdout); -} |