summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-10-29 22:28:49 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2022-10-29 22:28:49 +0100
commit991f657ecdcb26cd7e40ab44463f189b1e89b014 (patch)
treec55b33a66244f80ea8751b5346f8d7d5fb26e46e
parent094eb9ae48d1f064bbf8810a2560b344b6dc22cf (diff)
downloadnetsurf-991f657ecdcb26cd7e40ab44463f189b1e89b014.tar.gz
netsurf-991f657ecdcb26cd7e40ab44463f189b1e89b014.tar.bz2
html: layout: Remove duplicate typedefs
-rw-r--r--content/handlers/html/layout.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/content/handlers/html/layout.c b/content/handlers/html/layout.c
index 8ba45da78..d9de14b37 100644
--- a/content/handlers/html/layout.c
+++ b/content/handlers/html/layout.c
@@ -70,15 +70,6 @@
#include "html/layout_internal.h"
#include "html/table.h"
-typedef uint8_t (*css_len_func)(
- const css_computed_style *style,
- css_fixed *length, css_unit *unit);
-typedef uint8_t (*css_border_style_func)(
- const css_computed_style *style);
-typedef uint8_t (*css_border_color_func)(
- const css_computed_style *style,
- css_color *color);
-
/** Array of per-side access functions for computed style margins. */
const css_len_func margin_funcs[4] = {
[TOP] = css_computed_margin_top,