summaryrefslogtreecommitdiff
path: root/fitz/fitz_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/fitz_base.h')
-rw-r--r--fitz/fitz_base.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/fitz/fitz_base.h b/fitz/fitz_base.h
index 515e39e5..5c9f03c1 100644
--- a/fitz/fitz_base.h
+++ b/fitz/fitz_base.h
@@ -49,7 +49,6 @@ extern char *fz_optarg;
extern int gettimeofday(struct timeval *tv, struct timezone *tz);
-#define FZ_FLEX 1
#define restrict
#define inline __inline
@@ -69,7 +68,6 @@ extern int gettimeofday(struct timeval *tv, struct timezone *tz);
#else /* C99 or close enough */
#include <unistd.h>
-#define FZ_FLEX
#endif
@@ -135,11 +133,6 @@ extern unsigned fz_cpuflags;
#define CLAMP(x,a,b) ( (x) > (b) ? (b) : ( (x) < (a) ? (a) : (x) ) )
#endif
-#define MAX4(a,b,c,d) MAX(MAX(a,b), MAX(c,d))
-#define MIN4(a,b,c,d) MIN(MIN(a,b), MIN(c,d))
-
-#define STRIDE(n, bcp) (((bpc) * (n) + 7) / 8)
-
/* plan9 stuff for utf-8 */
int chartorune(int *rune, char *str);
int runetochar(char *str, int *rune);