1 /*
2  * mpatrol
3  * A library for controlling and tracing dynamic memory allocations.
4  * Copyright (C) 1997-2002 Graeme S. Roy <graeme.roy@analog.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307, USA.
20  */
21 
22 
23 /*
24  * Library version and copyright definitions.  The version strings are
25  * in the format most common to a specific operating system.  Note that
26  * the dates are release dates, not dates of last compilation.
27  */
28 
29 
30 #include "version.h"
31 
32 
33 #if MP_IDENT_SUPPORT
34 #ident "$Id: version.c,v 1.54 2002/01/08 22:30:01 graeme Exp $"
35 #else /* MP_IDENT_SUPPORT */
36 static MP_CONST MP_VOLATILE char *version_id = "$Id: version.c,v 1.54 2002/01/08 22:30:01 graeme Exp $";
37 #endif /* MP_IDENT_SUPPORT */
38 
39 
40 #ifdef __cplusplus
41 extern "C"
42 {
43 #endif /* __cplusplus */
44 
45 
46 #if TARGET == TARGET_UNIX
47 
48 /* SCCS identification string and American date format.
49  */
50 MP_GLOBAL char *__mp_version = "@(#) " MP_VERSION " (02/01/08)";
51 
52 #elif TARGET == TARGET_AMIGA
53 
54 /* Amiga identification string and European date format.
55  */
56 MP_GLOBAL char *__mp_version = "$VER: " MP_VERSION " (08.01.02)";
57 
58 #else /* TARGET */
59 
60 /* No identification string and English date format.
61  */
62 MP_GLOBAL char *__mp_version = MP_VERSION " (08 January 2002)";
63 
64 #endif /* TARGET */
65 
66 
67 MP_GLOBAL char *__mp_copyright = "Copyright (C) 1997-2002";
68 MP_GLOBAL char *__mp_author = "Graeme S. Roy";
69 MP_GLOBAL char *__mp_email = "graeme.roy@analog.com";
70 MP_GLOBAL char *__mp_homepage = "http://www.cbmamiga.demon.co.uk/mpatrol";
71 
72 
73 #ifdef __cplusplus
74 }
75 #endif /* __cplusplus */
76