diff options
Diffstat (limited to 'do_rects.c')
-rw-r--r-- | do_rects.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -3,13 +3,13 @@ Copyright 1988, 1989 by Digital Equipment Corporation, Maynard, Massachusetts. All Rights Reserved -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in +both that copyright notice and this permission notice appear in supporting documentation, and that the name of Digital not be used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. +software without specific, written prior permission. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL @@ -27,7 +27,7 @@ SOFTWARE. static XRectangle *rects; static GC pgc; -int +int InitRectangles(XParms xp, Parms p, int64_t reps) { int size = p->special; @@ -82,7 +82,7 @@ InitRectangles(XParms xp, Parms p, int64_t reps) return reps; } -void +void DoRectangles(XParms xp, Parms p, int64_t reps) { for (int i = 0; i != reps; i++) { @@ -95,7 +95,7 @@ DoRectangles(XParms xp, Parms p, int64_t reps) } } -void +void DoOutlineRectangles(XParms xp, Parms p, int64_t reps) { for (int i = 0; i != reps; i++) { @@ -108,7 +108,7 @@ DoOutlineRectangles(XParms xp, Parms p, int64_t reps) } } -void +void EndRectangles(XParms xp, Parms p) { free(rects); |