lilypond-0.0.62
[lilypond.git] / lily / lily-version.cc
blob03f605394de9ca9937a71fc6b168b2e350c8dec8
1 #include "version.hh"
2 #include <stdio.h>
4 static char *s = "GNU LilyPond " MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL MY_PATCH_LEVEL " #%d";
6 static const int build=
7 #include ".build"
10 char const *
11 lily_version_sz()
13 static char v[1024];
14 sprintf(v, s, build);
15 return v;