piechart: Use definition of M_PI from GSL.
authorBen Pfaff <blp@gnu.org>
Wed, 1 Jul 2009 23:39:52 +0000 (16:39 -0700)
committerBen Pfaff <blp@gnu.org>
Thu, 2 Jul 2009 03:46:28 +0000 (20:46 -0700)
The GSL header <gsl/gsl_math.h> makes sure that the standard BSD
mathematical constants are defined, so we don't have to do it ourselves.

src/output/charts/piechart.c

index 4eeb10ca63af06f70f764477cd0865401c34a8c0..edb83ddb2e90dfd947e200abf9cb3ba7095b74a9 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <float.h>
 #include <assert.h>
+#include <gsl/gsl_math.h>
 #include <math.h>
 #include <stdio.h>
 
 
 #include "minmax.h"
 
-
-/* Pie charts of course need to know Pi :) */
-#ifndef M_PI
-#define M_PI ( 22.0 / 7.0 )
-#endif
-
-
-
 /* Draw a single slice of the pie */
 static void
 draw_segment(struct chart *ch,