summaryrefslogtreecommitdiff
path: root/source/fitz
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-07-11 11:25:58 +0200
committerTor Andersson <tor.andersson@artifex.com>2017-07-21 12:17:32 +0200
commit9ee31abfa2825b6e891bd0b4ceb87fc3b3e05f41 (patch)
tree301755bb23d973d4d0822314044040a9398f39f0 /source/fitz
parentb66925c26188075d843f7661f8d0a21eeb37ec22 (diff)
downloadmupdf-9ee31abfa2825b6e891bd0b4ceb87fc3b3e05f41.tar.xz
Remove (now needless) extern strlen declaration.
A leftover from when fz_write_string was a static inline in a header file.
Diffstat (limited to 'source/fitz')
-rw-r--r--source/fitz/output.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/fitz/output.c b/source/fitz/output.c
index 08ee50fe..c9f04b96 100644
--- a/source/fitz/output.c
+++ b/source/fitz/output.c
@@ -301,7 +301,6 @@ fz_write_data(fz_context *ctx, fz_output *out, const void *data, size_t size)
void
fz_write_string(fz_context *ctx, fz_output *out, const char *s)
{
- extern size_t strlen(const char *s); /* avoid including string.h in public header */
if (out)
out->write(ctx, out->state, s, strlen(s));
}