OSDN Git Service

[Refacotr] #37353 使われていないプリプロUSE_NCURSESを部分的に削除 / Removed unused preprocessors USE_NC...
authorHourier <hourier@users.sourceforge.jp>
Wed, 29 Jan 2020 12:30:38 +0000 (21:30 +0900)
committerHourier <hourier@users.sourceforge.jp>
Wed, 29 Jan 2020 12:30:38 +0000 (21:30 +0900)
src/h-config.h
src/main-gcu.c

index c2bf171..23cd38d 100644 (file)
  */
 
 /*
- * OPTION: Include "ncurses.h" instead of "curses.h" in "main-gcu.c"
- */
-/* #define USE_NCURSES */
-
-
-/*
  * OPTION: for multi-user machines running the game setuid to some other
  * user (like 'games') this SAFE_SETUID option allows the program to drop
  * its privileges when saving files that allow for user specified pathnames.
index 82f4a76..f505a9f 100644 (file)
 /*
  * Include the proper "header" file
  */
-#ifdef USE_NCURSES
-# undef bool
-# include <ncurses.h>
-#else
 # include <curses.h>
-#endif
 
 typedef struct term_data term_data;