Fix min not defined compiler error using the same method the Debian maintainers did by moving it down.
This commit is contained in:
parent
1603f801a7
commit
94611b7429
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user