Fix min not defined compiler error using the same method the Debian maintainers did by moving it down.

This commit is contained in:
ComputerNerd 2020-12-07 19:22:15 -06:00 committed by Albrecht Schlosser
parent 1603f801a7
commit 94611b7429
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,6 @@
// Expands all unprintable characters to ^X or \nnn notation
// Aligns them against the inside of the box.
#define min(a,b) ((a)<(b)?(a):(b))
#include <FL/fl_draw.H>
#include <FL/Fl_Image.H>
@ -40,6 +39,7 @@
#include <ctype.h>
#include <math.h>
#define min(a,b) ((a)<(b)?(a):(b))
#define MAXBUF 1024
char fl_draw_shortcut; // set by fl_labeltypes.cxx