]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/pdns_hw.cc
Merge pull request #2966 from pieterlexis/bind-syntax-err-no-crash
[thirdparty/pdns.git] / pdns / pdns_hw.cc
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4 #include <boost/multi_index_container.hpp>
5 #include <boost/multi_index/ordered_index.hpp>
6 #include <boost/tuple/tuple_comparison.hpp>
7 #include <boost/multi_index/key_extractors.hpp>
8 #include <boost/multi_index/sequenced_index.hpp>
9
10 #include <iostream>
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string>
14 #include <sstream>
15
16 #include "namespaces.hh"
17 int main()
18 {
19 ostringstream str;
20 str << "Everything is ok!"<<"\n"; // FIXME400: boost test?
21 exit(0);
22 }