1 #ifdef HAVE_CONFIG_H
2 # include <config.h>
3 #endif
4 
5 #ifdef HAVE_SYS_WAIT_H
6 # include <sys/wait.h>
7 #endif
8 
9 #ifdef HAVE_SYS_TYPES_H
10 # include <sys/types.h>
11 #endif
12 
13 #ifdef HAVE_SYS_MMAN_H
14 # include <sys/mman.h>
15 #endif
16 
17 #include <sys/stat.h>
18 #include <fcntl.h>
19 #include <semaphore.h>
20 
21 #include <unistd.h>
22 #include <stdarg.h>
23 #include <signal.h>
24 #include <errno.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <string.h>
28 
29 #ifdef HAVE_WINDOWS_H
30 #include <windows.h>
31 #endif
32 
33 #ifdef HAVE_PROCESS_H
34 #include <process.h>
35 #endif
36 
37 #ifdef HAVE_CONIO_H
38 #include <conio.h>
39 #endif
40 
41 #ifdef HAVE_TCHAR_H
42 #include <tchar.h>
43 #endif
44 
45 int tubo_main(int argc, char **argv);
main(int argc,char ** argv)46 int main(int argc, char **argv){
47     return tubo_main(argc, argv);
48 }
49