From 143a4898f13cee32741c3acd6c4c428afd9545be Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 6 Nov 2017 19:55:40 +0100 Subject: Move static inline function out of header. --- source/fitz/image.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source') diff --git a/source/fitz/image.c b/source/fitz/image.c index 43addf96..81dfbab1 100644 --- a/source/fitz/image.c +++ b/source/fitz/image.c @@ -4,6 +4,13 @@ #include #include +/* TODO: here or public? */ +static int +fz_key_storable_needs_reaping(fz_context *ctx, const fz_key_storable *ks) +{ + return ks == NULL ? 0 : (ks->store_key_refs == ks->storable.refs); +} + #define SANE_DPI 72.0f #define INSANE_DPI 4800.0f -- cgit v1.2.3