reactos/subsys/win32k/objects
diff -u -r1.6 -r1.7
--- bezier.c 27 Mar 2004 00:35:02 -0000 1.6
+++ bezier.c 10 May 2004 13:35:28 -0000 1.7
@@ -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 <windows.h>
#include <ddk/ntddk.h>
#include <math.h>
@@ -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