1 /*************************************************
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
13 extern uschar *version_string;
14 extern uschar *version_date;
22 version_string = US"2.06";
24 Ustrcpy(today, __DATE__);
25 if (today[4] == ' ') i = 1;
26 today[3] = today[6] = '-';
28 version_date = (uschar *)malloc(32);
30 Ustrncat(version_date, today+4+i, 3-i);
31 Ustrncat(version_date, today, 4);
32 Ustrncat(version_date, today+7, 4);
33 Ustrcat(version_date, " ");
34 Ustrcat(version_date, __TIME__);
37 /* End of em_version.c */