blob: 1313eb4281709a458b8081f0b2c01d7ba4823cad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#if 0 /* SCMVERSION is a string for the version specifier. The leading
# number is the major version number, the letter is the revision ("a"
# for alpha release, "b" for beta release, "c", and so on), and the
# trailing number is the patchlevel. */
# /* This next line sets VERSION when included from the Makefile */
VERSION=5c3
#endif
#ifndef SCMVERSION
# define SCMVERSION "5c3"
#endif
#ifndef RTL
# ifdef nosve
# define INIT_FILE_NAME "Init5c3_scm";
# endif
# ifndef INIT_FILE_NAME
# define INIT_FILE_NAME "Init5c3.scm"
# endif
#endif
|