]> git.donarmstrong.com Git - lilypond.git/blob - mi2mu/mi2mu-version.cc
release: 0.1.9
[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 "version.hh"
8
9
10 static char *s = "mi2mu " MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL MY_PATCH_LEVEL " #%d";
11
12 static const int build=
13 #include ".build"
14 ;
15
16 const char * 
17 mi2mu_version_sz()
18 {
19   static char v[1024];
20   sprintf(v, s, build);
21   return v;
22 }
23