From 402441b9bf762a15d7e8d2d2f8752d7708e2f9b9 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 6 Jan 2019 05:45:11 -0500 Subject: [PATCH] Use __DATE__ for curses_version() instead of hardwiring the year. I'm not sure this is ideal, either. --- pdcurses/initscr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdcurses/initscr.c b/pdcurses/initscr.c index 69c7ddf9..e10de33b 100644 --- a/pdcurses/initscr.c +++ b/pdcurses/initscr.c @@ -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 */