Remove broken code for defining uint64_t.

This commit is contained in:
Carl Worth 2005-04-07 15:00:46 +00:00
parent 9bef5b6f14
commit 43435b69e1
2 changed files with 6 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2005-04-07 Carl Worth <cworth@cworth.org>
* src/cairo-wideint.h: Remove broken code for defining
uint64_t.
2005-04-07 Carl Worth <cworth@cworth.org>
* src/cairo-surface.c: (_cairo_surface_release_source_image),

View file

@ -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
/*