mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
3fc04529d4
Include fewer redundant headers; use the compiler search paths better. svn:r11060
20 lines
327 B
C
20 lines
327 B
C
|
|
#include "orconfig.h"
|
|
#define DNS_USE_OPENSSL_FOR_ID
|
|
#ifndef HAVE_UINT
|
|
typedef unsigned int uint;
|
|
#endif
|
|
#ifndef HAVE_U_CHAR
|
|
typedef unsigned char u_char;
|
|
#endif
|
|
#ifdef MS_WINDOWS
|
|
#define inline __inline
|
|
#endif
|
|
#include "torint.h"
|
|
|
|
#if defined(MS_WINDOWS) && !defined(WIN32)
|
|
/* How did _this_ happen? */
|
|
#define WIN32
|
|
#endif
|
|
|