]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/pdns_hw.cc
remove bashisms
[thirdparty/pdns.git] / pdns / pdns_hw.cc
1 #include <boost/lexical_cast.hpp>
2 #include <boost/multi_index_container.hpp>
3 #include <boost/multi_index/ordered_index.hpp>
4 #include <boost/tuple/tuple_comparison.hpp>
5 #include <boost/multi_index/key_extractors.hpp>
6 #include <boost/multi_index/sequenced_index.hpp>
7 #include <iostream>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string>
11 #include <sstream>
12
13 using namespace std;
14 int main()
15 {
16 ostringstream str;
17 str << "Everything is ok!"<< boost::lexical_cast<string>("") <<"\n";
18 exit(0);
19 }