Add missing include file stdlib.h for abs(int)

This file was included (in math.h or elsewhere) on Linux and latest
macOS versions but maybe not in earlier macOS versions or with other
configuration options.
This commit is contained in:
Albrecht Schlosser
2021-03-22 00:13:47 +01:00
parent edfe684419
commit 62ff323b70
@@ -20,6 +20,7 @@
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h> // abs(int)
#include <FL/Fl_PostScript.H>
#include "Fl_PostScript_Graphics_Driver.H"