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

#include <libprint/print.hxx>

#include <iostream>

using namespace std;

void
print (const string& h)
{
  cout << h << endl;
}