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
*** empty log message ***
[lilypond.git]
/
lily
/
warn.cc
blob
04f52b17584d15484f015eb551708e5447b3b505
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--2003 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