1 | /* |
---|
2 | * zzuf - general purpose fuzzer |
---|
3 | * Copyright (c) 2006, 2007 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: timer.h 192 2007-01-12 15:47:48Z sam $ |
---|
7 | * |
---|
8 | * This program is free software. It comes without any warranty, to |
---|
9 | * the extent permitted by applicable law. You can redistribute it |
---|
10 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
11 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
12 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
13 | */ |
---|
14 | |
---|
15 | /* |
---|
16 | * config.h: MSVC-specific configuration file |
---|
17 | */ |
---|
18 | |
---|
19 | #define VERSION "0.7 (msvc)" |
---|
20 | |
---|
21 | #define HAVE_WINDOWS_H 1 |
---|
22 | #define HAVE_WINSOCK2_H 1 |
---|
23 | #define HAVE_IO_H 1 |
---|
24 | #define HAVE_PROCESS_H 1 |
---|
25 | |
---|
26 | #define HAVE__PIPE |
---|
27 | |
---|
28 | /* Win32-specific, of course. */ |
---|
29 | typedef signed long long int int64_t; |
---|
30 | typedef unsigned long long int uint64_t; |
---|
31 | typedef signed int int32_t; |
---|
32 | typedef unsigned int uint32_t; |
---|
33 | typedef signed short int16_t; |
---|
34 | typedef unsigned short uint16_t; |
---|
35 | typedef signed char int8_t; |
---|
36 | typedef unsigned char uint8_t; |
---|
37 | |
---|
38 | #include <stddef.h> /* Has uintptr_t etc. */ |
---|
39 | typedef int pid_t; |
---|
40 | |
---|
41 | #define inline /* undefined */ |
---|
42 | #define __attribute__(x) /* undefined */ |
---|
43 | |
---|
44 | #define STDOUT_FILENO 1 |
---|
45 | #define STDERR_FILENO 2 |
---|