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
lilypond-0.1.11
[lilypond.git]
/
lib
/
warn.cc
blob
9fdf7219a137d4ab4e1ca6dd3f0af9cf97f47cf3
1
#include
"warn.hh"
2
#include <stream.h>
3
4
void
5
error
(
String s
)
6
{
7
cerr
<<
"error: "
<<
s
<<
"
\n
"
;
8
9
exit
(
1
);
10
}
11
12
13
void
14
warning
(
String m
)
15
{
16
cerr
<<
"warning: "
<<
m
<<
endl
;
17
18
}
19
20
void
21
message
(
String m
)
22
{
23
cerr
<<
m
<<
endl
;
24
}