From 23dcd0a6f2399e39b549a5875ab379cb1c692f8a Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Mon, 10 May 2004 13:35:28 +0000 Subject: [PATCH] fixed compiling issues with gcc 3.4 svn path=/trunk/; revision=9347 --- reactos/subsys/win32k/objects/bezier.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/reactos/subsys/win32k/objects/bezier.c b/reactos/subsys/win32k/objects/bezier.c index 896bd785efb..415b7a2779d 100644 --- a/reactos/subsys/win32k/objects/bezier.c +++ b/reactos/subsys/win32k/objects/bezier.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: bezier.c,v 1.6 2004/03/27 00:35:02 weiden Exp $ */ +/* $Id: bezier.c,v 1.7 2004/05/10 13:35:28 weiden Exp $ */ #include #include #include @@ -65,14 +65,6 @@ (Mid).x=((P1).x+(P2).x + 1) >> 1;\ (Mid).y=((P1).y+(P2).y + 1) >> 1; -static int abs ( int __x ) -{ - if ( __x < 0 ) - return -__x; - else - return __x; -} - /********************************************************** * BezierCheck helper function to check * that recursion can be terminated