Restore extern tag for variable declarations, (accidentally removed when recently removing extern from function prototypes).

This commit is contained in:
Carl Worth 2005-01-07 12:14:40 +00:00
parent a850136805
commit dc0d812f6c
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2005-01-07 Carl Worth <cworth@cworth.org>
* src/icrop.h:
* src/icint.h: Restore extern tag for variable declarations,
(accidentally removed when recently removing extern from function
prototypes).
2005-01-04 Carl Worth <cworth@cworth.org>
* src/ic.c (pixman_composite): Do nothing if src image has width

View file

@ -968,7 +968,7 @@ typedef struct _Picture *PicturePtr;
#define PictureCmapPolicyColor 3
#define PictureCmapPolicyAll 4
pixman_private int PictureCmapPolicy;
extern int PictureCmapPolicy pixman_private;
int PictureParseCmapPolicy (const char *name);

View file

@ -98,7 +98,7 @@ extern const IcMergeRopRec IcMergeRopBits[16] pixman_private;
*/
/* half of table */
pixman_private const pixman_bits_t icStipple16Bits[256];
extern const pixman_bits_t icStipple16Bits[256] pixman_private;
#define IcStipple16Bits(b) \
(icStipple16Bits[(b)&0xff] | icStipple16Bits[(b) >> 8] << IC_HALFUNIT)