From 43435b69e14d4039b0537dfdc96cbcebd164175f Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 7 Apr 2005 15:00:46 +0000 Subject: [PATCH] Remove broken code for defining uint64_t. --- ChangeLog | 5 +++++ src/cairo-wideint.h | 8 +------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index aa7854f5b..11b88cb0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-04-07 Carl Worth + + * src/cairo-wideint.h: Remove broken code for defining + uint64_t. + 2005-04-07 Carl Worth * src/cairo-surface.c: (_cairo_surface_release_source_image), diff --git a/src/cairo-wideint.h b/src/cairo-wideint.h index 7db22a8bd..bb52b8a6a 100644 --- a/src/cairo-wideint.h +++ b/src/cairo-wideint.h @@ -1,5 +1,5 @@ /* - * $Id: cairo-wideint.h,v 1.8 2005-04-07 19:05:52 cworth Exp $ + * $Id: cairo-wideint.h,v 1.9 2005-04-07 22:00:46 cworth Exp $ * * Copyright © 2004 Keith Packard * @@ -51,12 +51,6 @@ typedef long int32_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned long uint32_t; - -# if sizeof(long long) == 64 -typedef long long int64_t; -typedef unsigned long long uint64_t; -# define HAVE_UINT64_T -# endif #endif /*