]> git.donarmstrong.com Git - lilypond.git/blob - flower/rational.cc
release: 0.1.8
[lilypond.git] / flower / rational.cc
1 /*
2   rational.cc -- implement Rational related functions
3
4   source file of the Flower Library
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "rational.hh"
10 #include "string.hh"
11
12 void
13 print_rat (Rational const &m)
14 {
15     cout << String (m) << flush;
16 }
17     
18