]> git.donarmstrong.com Git - lilypond.git/blob - mi2mu/mi2mu-version.cc
release: 0.1.49
[lilypond.git] / mi2mu / mi2mu-version.cc
1 //
2 // version.cc -- implement inexpensive versioning
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
5
6 #include <stdio.h>
7 #include "config.hh"
8
9
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";
13
14 static const int build=
15 //#include ".build"
16 0
17 ;
18
19 const char * 
20 mi2mu_version_sz()
21 {
22   static char v[1024];
23   sprintf(v, s, build);
24   return v;
25 }
26