1#include "duckdb/common/printer.hpp"
2
3#include <stdio.h>
4
5using namespace duckdb;
6
7void Printer::Print(string str) {
8 fprintf(stderr, "%s\n", str.c_str());
9}
10