summaryrefslogtreecommitdiff
path: root/source/fitz/directory.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2017-08-13 13:53:34 +0800
committerSebastian Rasmussen <sebras@gmail.com>2017-08-15 20:42:16 +0800
commiteb11f659bbeacfab0a3110dbe40dd6099b77e308 (patch)
tree1032bbe0ae89b2190ca0b080dfdd410cc6d1bb59 /source/fitz/directory.c
parentdf4f2031b12d029ea731adfe616034008a75d90f (diff)
downloadmupdf-eb11f659bbeacfab0a3110dbe40dd6099b77e308.tar.xz
Move S_ISDIR workaround to common header file.
Might be useful in locations other than directory.c.
Diffstat (limited to 'source/fitz/directory.c')
-rw-r--r--source/fitz/directory.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/fitz/directory.c b/source/fitz/directory.c
index a269ef9a..df42f83c 100644
--- a/source/fitz/directory.c
+++ b/source/fitz/directory.c
@@ -53,11 +53,6 @@ static int has_dir_entry(fz_context *ctx, fz_archive *arch, const char *name)
return fz_file_exists(ctx, path);
}
-/* Cope with systems (such as Windows) with no S_ISDIR */
-#ifndef S_ISDIR
-#define S_ISDIR(mode) ((mode) & S_IFDIR)
-#endif
-
int
fz_is_directory(fz_context *ctx, const char *path)
{