repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.3.141
[lilypond.git]
/
midi2ly
/
mi2mu-version.cc
blob
113512d363a9de3904e71d334e1ae48d4f70e980
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