summaryrefslogtreecommitdiff
path: root/libprint/libprint/print.cxx
blob: 7ca5b04acf85e03f237cd5cf0ec9790bc29c65d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file: libprint/libprint.cxx -*- C++ -*-

#include <libprint/print.hxx>

#include <iostream>

using namespace std;

namespace print
{
  void
  to_stdout (const string& s)
  {
    cout << s << endl;
  }
}