Use __DATE__ for curses_version() instead of hardwiring the year. I'm

not sure this is ideal, either.
This commit is contained in:
William McBrine
2019-01-06 05:45:11 -05:00
parent af16a73b89
commit 402441b9bf

View File

@@ -95,7 +95,7 @@ initscr
char ttytype[128];
const char *_curses_notice = "PDCurses " PDC_VERDOT " - Public Domain 2019";
const char *_curses_notice = "PDCurses " PDC_VERDOT " - " __DATE__;
SCREEN *SP = (SCREEN*)NULL; /* curses variables */
WINDOW *curscr = (WINDOW *)NULL; /* the current screen image */