]> git.donarmstrong.com Git - lilypond.git/blob - lily/warn.cc
f942e1cda953043abe657af9c4ee2ec4b82d1fc2
[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
11 #include "string.hh"
12
13 void
14 progress_indication (String s)
15 {
16  fputs (s.ch_C(), stderr);
17  fflush (stderr);
18 }
19