]> git.donarmstrong.com Git - lilypond.git/blob - mi2mu/mi2mu-version.cc
release: 1.0.1
[lilypond.git] / mi2mu / mi2mu-version.cc
1 //
2 // version.cc -- implement inexpensive versioning
3 //
4 // copyright 1997 Jan Nieuwenhuizen <janneke@gnu.org>
5
6 #include <stdio.h>
7 #include "config.hh"
8 #include "version.hh"
9
10 #define VERSION_SZ  MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL "." MY_PATCH_LEVEL
11
12 static char *s = "mi2mu " VERSION_SZ;
13
14
15 const char * 
16 mi2mu_version_sz()
17 {
18   return s;
19 }
20