lilypond-0.1.36
[lilypond.git] / flower / flower-version.cc
blob6372f502779c76ed5661ff81c20d41d126791fd1
1 #include "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 ".build"
10 char const *
11 flower_version_sz()
13 static char v[1024];
14 sprintf (v, s, build);
15 return v;