lilypond-1.3.100
[lilypond.git] / flower / lib / flower-version.cc
blob83a69c0cef8d6063f63d8efab017a1f4c4cac9f0
1 #include "../out/version.hh" // urg
2 #include <stdio.h>
4 static char *s = "FlowerLib " MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL MY_PATCH_LEVEL " #%d";
6 static const int build=
7 #include "../out/.build"
10 const char *
11 flower_version_sz()
13 static char v[1024];
14 sprintf(v, s, build);
15 return v;