table: Avoid initializer warnings with GCC 4.9.
[pspp] / src / output / charts / spreadlevel-plot.c
index 8fcc0bdeebfa8856accf15ae6e1e3e7974526084..44e2c658a93464c025ccc4a8bb34fa483935f31c 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <math.h>
 #include <float.h>
+#include <stdlib.h>
 
 struct chart_item *
 spreadlevel_plot_create (const char *label, double tx_pwr)
@@ -43,11 +44,11 @@ spreadlevel_plot_create (const char *label, double tx_pwr)
 
   sl->n_data = 0;
   sl->data = NULL;
-  
+
   return &sl->chart_item;
 }
 
-void 
+void
 spreadlevel_plot_add (struct chart_item *ci, double spread, double level)
 {
   struct spreadlevel_plot_chart *sl = to_spreadlevel_plot_chart (ci);