]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-version.cc
release: 1.0.1
[lilypond.git] / lily / lily-version.cc
1 #include <stdio.h>
2
3 #include "config.hh"
4 #include "version.hh"
5
6 #define VERSION_SZ  MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL "." MY_PATCH_LEVEL
7
8 static char *s = "GNU LilyPond " VERSION_SZ ;
9
10
11 char const *
12 lily_version_number_sz()
13 {
14   return VERSION_SZ;
15 }
16
17 char const * 
18 lily_version_sz()
19 {
20   return s;
21 }