summaryrefslogtreecommitdiff
path: root/source/fitz/output-png.c
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2017-02-22 09:40:31 -0800
committerMichael Vrhel <michael.vrhel@artifex.com>2017-02-22 09:40:31 -0800
commit6477d336520e3278b56a39c4fd98f220522cb962 (patch)
treecff18451ec87cafb6991413a24f04c7831a85b39 /source/fitz/output-png.c
parentc109362f27679a5b8e56696292d96f9b067691ce (diff)
downloadmupdf-6477d336520e3278b56a39c4fd98f220522cb962.tar.xz
Move PATH_MAX to system.h
Better to have this defined at the system level rather than scattered about in various files.
Diffstat (limited to 'source/fitz/output-png.c')
-rw-r--r--source/fitz/output-png.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/fitz/output-png.c b/source/fitz/output-png.c
index 993bda9f..524e48bf 100644
--- a/source/fitz/output-png.c
+++ b/source/fitz/output-png.c
@@ -2,10 +2,6 @@
#include <zlib.h>
-#ifndef PATH_MAX
-#define PATH_MAX (1024)
-#endif
-
static inline void big32(unsigned char *buf, unsigned int v)
{
buf[0] = (v >> 24) & 0xff;