summaryrefslogtreecommitdiff
path: root/hw/xfree86/rac/xf86RAC.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@theobromine.nwnk.net>2006-06-18 23:54:04 -0400
committerAdam Jackson <ajax@theobromine.nwnk.net>2006-06-18 23:54:04 -0400
commit98a602fab1f307a07a96868d7dae12b6f8d7f405 (patch)
tree606b06f2f7344b9fd62bf68e82762758231dd8dd /hw/xfree86/rac/xf86RAC.c
parent76aaf7eae7409162c5ed2963f2e27d019cb30263 (diff)
Don't bother building RAC as a module, that's just absurd.
Diffstat (limited to 'hw/xfree86/rac/xf86RAC.c')
-rw-r--r--hw/xfree86/rac/xf86RAC.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/hw/xfree86/rac/xf86RAC.c b/hw/xfree86/rac/xf86RAC.c
index 1f2d3a129..aba86226e 100644
--- a/hw/xfree86/rac/xf86RAC.c
+++ b/hw/xfree86/rac/xf86RAC.c
@@ -1,5 +1,3 @@
-/* $XFree86: xc/programs/Xserver/hw/xfree86/rac/xf86RAC.c,v 1.5 1999/06/12 17:30:21 dawes Exp $ */
-
#ifdef HAVE_XORG_CONFIG_H
#include <xorg-config.h>
#endif
@@ -243,12 +241,12 @@ static void RACCompositeRects(CARD8 op, PicturePtr pDst, xRenderColor *color,
int nRect, xRectangle *rects);
#endif
-GCFuncs RACGCFuncs = {
+static GCFuncs RACGCFuncs = {
RACValidateGC, RACChangeGC, RACCopyGC, RACDestroyGC,
RACChangeClip, RACDestroyClip, RACCopyClip
};
-GCOps RACGCOps = {
+static GCOps RACGCOps = {
RACFillSpans, RACSetSpans, RACPutImage, RACCopyArea,
RACCopyPlane, RACPolyPoint, RACPolylines, RACPolySegment,
RACPolyRectangle, RACPolyArc, RACFillPolygon, RACPolyFillRect,
@@ -257,13 +255,13 @@ GCOps RACGCOps = {
{NULL} /* devPrivate */
};
-miPointerSpriteFuncRec RACSpriteFuncs = {
+static miPointerSpriteFuncRec RACSpriteFuncs = {
RACSpriteRealizeCursor, RACSpriteUnrealizeCursor, RACSpriteSetCursor,
RACSpriteMoveCursor
};
-int RACScreenIndex = -1;
-int RACGCIndex = -1;
+static int RACScreenIndex = -1;
+static int RACGCIndex = -1;
static unsigned long RACGeneration = 0;