]> git.donarmstrong.com Git - lilypond.git/blob - mi2mu/mi2mu-version.cc
release: 0.0.44
[lilypond.git] / mi2mu / mi2mu-version.cc
1 //
2 // version.cc -- implement inexpensive versioning
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
5 #include <stdio.h>
6 #include "version.hh"
7
8
9 static char *s = "mi2mu " MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL MY_PATCH_LEVEL " #%d";
10
11 static const int build=
12 #include ".build"
13 ;
14
15 const char * 
16 mi2mu_version_sz()
17 {
18     static char v[1024];
19     sprintf(v, s, build);
20     return v;
21 }
22