xref: /plan9/sys/src/cmd/unix/drawterm/include/9windows.h (revision 96cbc34f1b36a29efdcfd47b10e70703a690febc)
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <math.h>
5 #include <fcntl.h>
6 #include <io.h>
7 #include <setjmp.h>
8 #include <direct.h>
9 #include <process.h>
10 #include <time.h>
11 #include <assert.h>
12 #include <stdarg.h>
13 
14 /* disable various silly warnings */
15 #ifdef MSVC
16 #pragma warning( disable : 4245 4305 4244 4102 4761 4090 4028 4024)
17 #endif
18 
19 typedef __int64		p9_vlong;
20 typedef	unsigned __int64 p9_uvlong;
21 typedef unsigned uintptr;
22