Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 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;