From a5d1826677f04065620c2c1949a16bf445ef3846 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 2 Jun 2006 17:06:03 +0000 Subject: r16010: deal with the case that int64,uint64 are already typedef'ed metze (This used to be commit 07b014f770714474660f68c6ebc510bfbb232abc) --- source4/lib/appweb/mpr/miniMpr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/appweb') diff --git a/source4/lib/appweb/mpr/miniMpr.h b/source4/lib/appweb/mpr/miniMpr.h index 58f47d256a..43136d3f13 100644 --- a/source4/lib/appweb/mpr/miniMpr.h +++ b/source4/lib/appweb/mpr/miniMpr.h @@ -199,8 +199,8 @@ typedef unsigned char uchar; #ifndef uint #define uint unsigned #endif - typedef long long int int64; - typedef unsigned long long int uint64; + #define int64 int64_t + #define uint64 uint64_t #endif /* -- cgit