From: serassio <> Date: Sun, 23 Sep 2007 21:21:29 +0000 (+0000) Subject: uint8_t is not defined on Windows X-Git-Tag: SQUID_3_0_RC1~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8ca61a71c982a1535d08d01a1b4851bd9579fc5;p=thirdparty%2Fsquid.git uint8_t is not defined on Windows --- diff --git a/include/squid_mswin.h b/include/squid_mswin.h index 9d2c8e7dcd..345aa436a5 100755 --- a/include/squid_mswin.h +++ b/include/squid_mswin.h @@ -1,5 +1,5 @@ /* - * $Id: squid_mswin.h,v 1.5 2007/08/14 17:05:47 serassio Exp $ + * $Id: squid_mswin.h,v 1.6 2007/09/23 15:21:29 serassio Exp $ * * AUTHOR: Andrey Shorin * AUTHOR: Guido Serassio @@ -47,6 +47,7 @@ #if defined(_MSC_VER) /* Microsoft C Compiler ONLY */ +typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef unsigned __int64 uint64_t;