conterm/include/9windows.h

22 lines
446 B
C
Raw Permalink Normal View History

2005-08-08 16:50:13 +04:00
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <fcntl.h>
#include <io.h>
#include <setjmp.h>
#include <direct.h>
#include <process.h>
#include <time.h>
#include <assert.h>
#include <stdarg.h>
/* disable various silly warnings */
2005-11-07 20:21:23 +03:00
#ifdef MSVC
2005-08-08 16:50:13 +04:00
#pragma warning( disable : 4245 4305 4244 4102 4761 4090 4028 4024)
2005-11-07 20:21:23 +03:00
#endif
2005-08-08 16:50:13 +04:00
typedef __int64 p9_vlong;
typedef unsigned __int64 p9_uvlong;
2007-12-31 20:23:36 +03:00
typedef unsigned uintptr;