Fix problem with an ifdef that should have been ifndef.
authorDavid Griffith <dave@661.org>
Thu, 18 Jul 2019 00:06:04 +0000 (00:06 +0000)
committerDavid Griffith <dave@661.org>
Thu, 18 Jul 2019 00:06:04 +0000 (00:06 +0000)
src/curses/ux_input.c

index 22ceb40c00dfd0afa4423274d5951e458a417016..5814427929a1767373410b64cf979f06bb44f3b6 100644 (file)
@@ -36,7 +36,7 @@
 #ifdef USE_UTF8
 #include <wchar.h>
 #else
-#ifdef wint_t
+#ifndef wint_t
 typedef unsigned int wint_t;
 #endif
 #endif