From 8bae6840452050a24e16e6bb197897846a93522d Mon Sep 17 00:00:00 2001 From: oni-link Date: Tue, 1 Apr 2014 12:21:55 +0200 Subject: remove HAVE_DATE_TIME __DATE__ and __TIME__ are C99 standard predefined macros. --- src/version.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/version.c b/src/version.c index 3f1fd25ae3..fe058d94e6 100644 --- a/src/version.c +++ b/src/version.c @@ -23,11 +23,7 @@ char *Version = VIM_VERSION_SHORT; static char *mediumVersion = VIM_VERSION_MEDIUM; -#if defined(HAVE_DATE_TIME) || defined(PROTO) char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")"; -#else // if defined(HAVE_DATE_TIME) || defined(PROTO) -char *longVersion = VIM_VERSION_LONG; -#endif // if defined(HAVE_DATE_TIME) || defined(PROTO) static void list_features(void); static void version_msg(char *s); -- cgit