summaryrefslogtreecommitdiff
path: root/src/select/computed.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-11-02 22:21:53 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2016-11-19 14:30:07 +0000
commit03824fd772e44b4cd281dd893df07d991cac9e41 (patch)
tree2d2af773c3bb83db3e8897e80cee558325a56b79 /src/select/computed.c
parent6dc495bb9936c8d1359fd6c1a1728962730cde08 (diff)
downloadlibcss-03824fd772e44b4cd281dd893df07d991cac9e41.tar.gz
libcss-03824fd772e44b4cd281dd893df07d991cac9e41.tar.bz2
Remove redundant API surface.
Diffstat (limited to 'src/select/computed.c')
-rw-r--r--src/select/computed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/select/computed.c b/src/select/computed.c
index 1fe6a81..2efc8a7 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -65,7 +65,7 @@ static css_error compute_absolute_length_pair(css_computed_style *style,
* CSS_NOMEM on memory exhaustion,
* CSS_BADPARM on bad parameters.
*/
-css_error css_computed_style_create(css_computed_style **result)
+css_error css__computed_style_create(css_computed_style **result)
{
css_computed_style *s;
@@ -239,7 +239,7 @@ css_error css_computed_style_destroy(css_computed_style *style)
* \param pw Client-specific private data for handler functions
* \return CSS_OK on success.
*/
-css_error css_computed_style_initialise(css_computed_style *style,
+css_error css__computed_style_initialise(css_computed_style *style,
css_select_handler *handler, void *pw)
{
css_select_state state;
@@ -300,7 +300,7 @@ css_error css_computed_style_compose(
* to avoid the churn of unnecesaraly allocating and freeing
* the memory to compose styles into.
*/
- error = css_computed_style_create(&composed);
+ error = css__computed_style_create(&composed);
if (error != CSS_OK) {
return error;
}