lilypond-0.1.15
[lilypond.git] / mi2mu / mi2mu-version.cc
blob9b3532e4492c48110c1507231eaddad6ab98094f
1 //
2 // version.cc -- implement inexpensive versioning
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
6 #include <stdio.h>
7 #include "version.hh"
10 static char *s = "mi2mu " MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL MY_PATCH_LEVEL " #%d";
12 static const int build=
13 #include ".build"
16 const char *
17 mi2mu_version_sz()
19 static char v[1024];
20 sprintf(v, s, build);
21 return v;