summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/layout.c1
-rw-r--r--render/layout.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/render/layout.c b/render/layout.c
index 6f9bdbd03..179b77b28 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -56,6 +56,7 @@
#define AUTO INT_MIN
+static bool layout_block_context(struct box *block, struct content *content);
static void layout_minmax_block(struct box *block,
const struct font_functions *font_func);
static bool layout_block_object(struct box *block);
diff --git a/render/layout.h b/render/layout.h
index 40504624d..2d07a40e9 100644
--- a/render/layout.h
+++ b/render/layout.h
@@ -32,7 +32,6 @@
struct box;
bool layout_document(struct content *content, int width, int height);
-bool layout_block_context(struct box *block, struct content *content);
bool layout_inline_container(struct box *box, int width,
struct box *cont, int cx, int cy, struct content *content);
void layout_calculate_descendant_bboxes(struct box *box);