summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-04-21 22:56:00 +0000
committersabetts <sabetts>2006-04-21 22:56:00 +0000
commit8fc60a03e05c8ee6f1b0e8e2a50428af2f69f1d4 (patch)
treec4f6e406888db5e5c517dbca70c221d90267ecb6 /src
parentda43881cd91e35267b094bab80873aa63ba4e109 (diff)
downloadratpoison-8fc60a03e05c8ee6f1b0e8e2a50428af2f69f1d4.zip
(print_version): print build date
Diffstat (limited to 'src')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index d04693b..45feeea 100644
--- a/src/main.c
+++ b/src/main.c
@@ -283,8 +283,8 @@ set_sig_handler (int sig, void (*action)(int))
void
print_version ()
{
- printf ("%s %s\n", PACKAGE, VERSION);
- printf ("Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts\n\n");
+ printf ("%s %s (built %s %s)\n", PACKAGE, VERSION, __DATE__, __TIME__);
+ printf ("Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Shawn Betts\n\n");
exit (EXIT_SUCCESS);
}