summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-11-10 14:12:48 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-11-10 14:38:13 +0100
commit97c9056b6af80e8b6703031a0ae45fe6dc0e2766 (patch)
tree841630b0f63af9510bb16b33bdbc7077e55a7ff6 /include
parent268f28925f0d18d1289ac39c1c05d94c70914d9f (diff)
downloadmupdf-97c9056b6af80e8b6703031a0ae45fe6dc0e2766.tar.xz
Remove fz_android_fprintf.
Use android logging for throw/warn like we do with OutputDebugString on windows.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/system.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/mupdf/fitz/system.h b/include/mupdf/fitz/system.h
index c7cd3713..05527710 100644
--- a/include/mupdf/fitz/system.h
+++ b/include/mupdf/fitz/system.h
@@ -137,16 +137,6 @@ void fz_free_argv(int argc, char **argv);
#define S_ISDIR(mode) ((mode) & S_IFDIR)
#endif
-#ifdef __ANDROID__
-int fz_android_fprintf(void *file, const char *fmt, ...);
-#ifndef NDEBUG
-/* Capture fprintf for stdout/stderr to the android logging
- * stream. Only do this in debug builds as this implies a
- * delay */
-#define fprintf fz_android_fprintf
-#endif
-#endif
-
/* inline is standard in C++. For some compilers we can enable it within C too. */
#ifndef __cplusplus