]> Dogcows Code - chaz/yoink/blob - src/version.c
prep for runloop code
[chaz/yoink] / src / version.c
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #include "version.h"
13
14
15 #if defined(__DATE__) && defined(__TIME__)
16 const char* COMPILE_TIME = __DATE__" "__TIME__;
17 #else
18 const char* COMPILE_TIME = "Unknown";
19 #endif
20
This page took 0.031405 seconds and 4 git commands to generate.