]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.3
authorfred <fred>
Thu, 10 Oct 1996 19:42:40 +0000 (19:42 +0000)
committerfred <fred>
Thu, 10 Oct 1996 19:42:40 +0000 (19:42 +0000)
misc.hh
tstream.hh
version.cc

diff --git a/misc.hh b/misc.hh
index a0ce0161ad30f7f647abdd495eba514ba5b14dd5..fb8889f55193300f66ce85d32273ebad2bdd3591 100644 (file)
--- a/misc.hh
+++ b/misc.hh
@@ -4,5 +4,5 @@
 int intlog2(int d);    
 Real duration_to_idealspace(Mtime d);
 class String;
-char *get_version();
+const char *get_version();
 #endif
index 07be0c170617ef5189d70b5f181e59fede657250..9474dd69a8d8413b00695efc046295aa39fac83b 100644 (file)
@@ -12,7 +12,7 @@ struct Tex_stream {
     
     /// open a file for writing
     Tex_stream(String filename);
-    
+    void header();
     /// delegate conversion to string class.
     Tex_stream &operator<<(String);
 
index d305e403c6e20b55182be1f5d592b6b7ace200e9..401273b6b11d1cbca02641a59759aa1ada638f6b 100644 (file)
@@ -2,7 +2,7 @@
 
 static char *s = "LilyPond version " VERSIONSTR " compiled on " __DATE__ " at " __TIME__ "\n";
 
-char *
+const char *
 get_version()
 {
    return s;