]> git.donarmstrong.com Git - lilypond.git/blob - lily/warn.cc
nu wel 58
[lilypond.git] / lily / warn.cc
1 /*
2   warn.cc -- implement warning and error messages. Needs cleanup.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <stdio.h>
10 #include "string.hh"
11
12 void
13 progress_indication (String s)
14 {
15  fputs (s.ch_C(), stderr);
16  fflush (stderr);
17 }
18