Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3958 → Rev 3959

/programs/develop/libraries/cairo/src/cairo-wideint-type-private.h
80,6 → 80,9
#ifndef INT32_MAX
# define INT32_MAX (2147483647)
#endif
#ifndef UINT32_MAX
# define UINT32_MAX (4294967295U)
#endif
 
#if HAVE_BYTESWAP_H
# include <byteswap.h>
102,7 → 105,7
 
typedef struct _cairo_uint64 {
uint32_t lo, hi;
} cairo_uint64_t, cairo_int64_t;
/ cairo_uint64_t, cairo_int64_t;
 
#else