lilypond-0.1.56
[lilypond.git] / mi2mu / mi2mu-version.cc
blobe008ad3e7b56fd6a1cd99c4b283194c33131f315
1 //
2 // version.cc -- implement inexpensive versioning
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
6 #include <stdio.h>
7 #include "config.hh"
10 // static char *s = "mi2mu " MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL MY_PATCH_LEVEL " #%d";
11 //urg
12 static char *s = "mi2mu " TOPLEVEL_VERSION " #%d";
14 static const int build=
15 //#include ".build"
19 const char *
20 mi2mu_version_sz()
22 static char v[1024];
23 sprintf(v, s, build);
24 return v;