2005-08-08 14:50:13 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdarg.h>
|
2006-01-17 14:55:02 +01:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
2005-08-08 14:50:13 +02:00
|
|
|
|
|
|
|
typedef long long p9_vlong;
|
|
|
|
typedef unsigned long long p9_uvlong;
|
2006-01-17 14:55:02 +01:00
|
|
|
typedef uintptr_t uintptr;
|