import source from 1.3.40
[external/swig.git] / Tools / WAD / Wad / main.cxx
1 extern "C" {
2 #include "wad.h"
3 }
4
5 /* This is a sick hack to force initialization upon loading */
6
7 class StartDebug {
8 public:
9   StartDebug() {
10     wad_init();
11   }
12 };
13
14 static StartDebug s;