]> git.donarmstrong.com Git - lilypond.git/blob - lily/warn.cc
* Documentation/user/lilypond.tely: Add dir entries for
[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 #include "main.hh"
13
14 void
15 progress_indication (String s)
16 {
17  fputs (s.to_str0 (), stderr);
18  fflush (stderr);
19 }
20