summaryrefslogtreecommitdiff
path: root/libhello/libhello/hello.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libhello/libhello/hello.cxx')
-rw-r--r--libhello/libhello/hello.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/libhello/libhello/hello.cxx b/libhello/libhello/hello.cxx
index ee5c555..f9e60bd 100644
--- a/libhello/libhello/hello.cxx
+++ b/libhello/libhello/hello.cxx
@@ -1,5 +1,3 @@
-// file: libhello/hello.cxx -*- C++ -*-
-
#include <libhello/hello.hxx>
#include <libprint/print.hxx>
@@ -9,8 +7,8 @@ using namespace std;
namespace hello
{
void
- say_formatted (const string& m)
+ say_hello_formatted (ostream& o, const string& h)
{
- print::to_stdout (m);
+ print::print_hello (o, h);
}
}