From: David Griffith Date: Thu, 18 Jul 2019 00:06:04 +0000 (+0000) Subject: Fix problem with an ifdef that should have been ifndef. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=3e06ba45905663d7c9e50f424a573fb94bf995dd;p=liskon_frotz.git Fix problem with an ifdef that should have been ifndef. --- diff --git a/src/curses/ux_input.c b/src/curses/ux_input.c index 22ceb40..5814427 100644 --- a/src/curses/ux_input.c +++ b/src/curses/ux_input.c @@ -36,7 +36,7 @@ #ifdef USE_UTF8 #include #else -#ifdef wint_t +#ifndef wint_t typedef unsigned int wint_t; #endif #endif