We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc6659 commit 95eef25Copy full SHA for 95eef25
src/libImaging/TiffDecode.c
@@ -12,6 +12,10 @@
12
13
#include "Imaging.h"
14
15
+#ifndef _UNISTD_H
16
+#include <unistd.h> /* lseek */
17
+#endif
18
+
19
#ifdef HAVE_LIBTIFF
20
21
#ifndef uint
src/libImaging/TiffDecode.h
@@ -13,12 +13,6 @@
#include <tiff.h>
#endif
-/* UNDONE -- what are we using from this? */
-/*#ifndef _UNISTD_H
- # include <unistd.h>
- # endif
-*/
-
22
#ifndef min
23
#define min(x, y) ((x > y) ? y : x)
24
#define max(x, y) ((x < y) ? y : x)
0 commit comments