diff options
| author | 2017-04-27 20:44:21 +0530 | |
|---|---|---|
| committer | 2017-04-27 20:44:21 +0530 | |
| commit | 4af8ba19f1ddbb0d85f239618d0a7b3e4b02217b (patch) | |
| tree | b715b675d4411abf26cd966ebbf5addeb6480231 | |
| parent | 861224cca0f3b729a6404a558fb98727034a3a50 (diff) | |
| download | nnn-4af8ba19f1ddbb0d85f239618d0a7b3e4b02217b.tar.gz | |
Use curses.h from libncursesw on Linux
| -rw-r--r-- | nnn.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,7 +7,11 @@ #include <sys/resource.h> #include <ctype.h> +#ifdef __linux__ +#include <ncursesw/curses.h> +#else #include <curses.h> +#endif #include <dirent.h> #include <errno.h> #include <fcntl.h> |