tomwalters@0
|
1 /*
|
tomwalters@0
|
2 Copyright (c) Applied Psychology Unit, Medical Research Council. 1988, 1989
|
tomwalters@0
|
3 ===========================================================================
|
tomwalters@0
|
4
|
tomwalters@0
|
5 Permission to use, copy, modify, and distribute this software without fee
|
tomwalters@0
|
6 is hereby granted for research purposes, provided that this copyright
|
tomwalters@0
|
7 notice appears in all copies and in all supporting documentation, and that
|
tomwalters@0
|
8 the software is not redistributed for any fee (except for a nominal shipping
|
tomwalters@0
|
9 charge). Anyone wanting to incorporate all or part of this software in a
|
tomwalters@0
|
10 commercial product must obtain a license from the Medical Research Council.
|
tomwalters@0
|
11
|
tomwalters@0
|
12 The MRC makes no representations about the suitability of this
|
tomwalters@0
|
13 software for any purpose. It is provided "as is" without express or implied
|
tomwalters@0
|
14 warranty.
|
tomwalters@0
|
15
|
tomwalters@0
|
16 */
|
tomwalters@0
|
17
|
tomwalters@0
|
18 /*
|
tomwalters@0
|
19 version.c
|
tomwalters@0
|
20 =========
|
tomwalters@0
|
21
|
tomwalters@0
|
22 APU, ASP model version number.
|
tomwalters@0
|
23
|
tomwalters@0
|
24
|
tomwalters@0
|
25 Copyright (c), 1989 The Medical Research Council, Applied Psychology Unit.
|
tomwalters@0
|
26
|
tomwalters@0
|
27
|
tomwalters@0
|
28 Author : Mike Allerhand
|
tomwalters@0
|
29 Written : 4th Feb, 1992.
|
tomwalters@0
|
30
|
tomwalters@0
|
31 */
|
tomwalters@0
|
32
|
tomwalters@0
|
33 /****************************************************************************
|
tomwalters@0
|
34 The version number is the sccs <release-number>.<level-number> of this file.
|
tomwalters@0
|
35 This enables:
|
tomwalters@0
|
36 -easy incrementing of the version number for the novice user.
|
tomwalters@0
|
37 -centralised information on model versions, including date of new
|
tomwalters@0
|
38 version and comments (stored in s.version.c) about the new version.
|
tomwalters@0
|
39
|
tomwalters@0
|
40 The level number is incremented using:
|
tomwalters@0
|
41
|
tomwalters@0
|
42 sccs edit version.c
|
tomwalters@0
|
43 sccs delget version.c
|
tomwalters@0
|
44
|
tomwalters@0
|
45 The release number is set to N, (and the level number reset to 1) using:
|
tomwalters@0
|
46
|
tomwalters@0
|
47 sccs edit -rN version.c
|
tomwalters@0
|
48 sccs delget version.c
|
tomwalters@0
|
49
|
tomwalters@0
|
50 Dates and comments for previous versions can be reviewed using:
|
tomwalters@0
|
51 sccs prs version.c
|
tomwalters@0
|
52
|
tomwalters@0
|
53 The level and release number can be edited locally (ie not installed) using:
|
tomwalters@0
|
54 sccs get version.c
|
tomwalters@0
|
55 chmod +w version.c
|
tomwalters@0
|
56 < edit version_Id and re-make >
|
tomwalters@0
|
57 chmod -w version.c
|
tomwalters@0
|
58
|
tomwalters@0
|
59 ****************************************************************************/
|
tomwalters@0
|
60
|
tomwalters@0
|
61
|
tomwalters@0
|
62 static char *version_Id = "8.2 4/11/97" ;
|