diff --git a/AUTHORS b/AUTHORS index 35b00d5..fefedfc 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,31 +1,32 @@ Original version by: Dave Smith Dave Smith Current maintainer: Carl Byington With contributions by: Joseph Nahmias -- bounces Joseph Nahmias Arne Ahrend Nigel Horne Chris Halls Stevens Miller Brad Hards Alexander Grau Antonio Palama Sean Loaring James Woodcock Joachim Metz Robert Simpson Justin Greer Bharath Acharya Robert Harris David Cuadrado Chris Eagle Fridrich Strba Testing team: Mac OSX - Michael Watson Cygwin/Mingw - Fridrich Strba + Cygwin - Chris Eagle diff --git a/src/common.h b/src/common.h index c02bb6b..319bde8 100644 --- a/src/common.h +++ b/src/common.h @@ -1,49 +1,44 @@ #ifndef __COMMON_H #define __COMMON_H -#ifdef HAVE_CONFIG_H - #include "config.h" -#endif - - #include #include #include #ifndef _MSC_VER #include #include #else typedef signed char int8_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef short int16_t; typedef unsigned int uint32_t; typedef int int32_t; typedef unsigned long long uint64_t; typedef long long int64_t; #endif #ifndef _WIN32 #pragma pack(1) typedef uint32_t DWORD; typedef uint16_t WORD; typedef uint8_t BYTE; typedef uint32_t UINT32; typedef struct { // copied from wine DWORD dwLowDateTime; DWORD dwHighDateTime; } FILETIME; // According to Jan Wolter, sys/param.h is the most portable source of endian // information on UNIX systems. see http://www.unixpapa.com/incnote/byteorder.html #include #else #define BYTE_ORDER LITTLE_ENDIAN #endif #endif