summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2018-02-28 01:47:29 +0100
committerBob Weinand <bobwei9@hotmail.com>2018-02-28 01:47:40 +0100
commitc1882ef0045d0a20e4e15024446b8acad5ca1991 (patch)
tree3b578c446a38c30d684dd6991a687b2079eb5f7b
parentf1d5168a7414e996957efa298013caa47579a046 (diff)
downloadphp-git-c1882ef0045d0a20e4e15024446b8acad5ca1991.tar.gz
Fixed build (extern php_stripslashes)
-rw-r--r--ext/standard/php_string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h
index 526ccbb90b..7de887eb55 100644
--- a/ext/standard/php_string.h
+++ b/ext/standard/php_string.h
@@ -130,7 +130,7 @@ PHPAPI zend_string *php_string_tolower(zend_string *s);
PHPAPI char *php_strtr(char *str, size_t len, const char *str_from, const char *str_to, size_t trlen);
#if ZEND_INTRIN_SSE4_2_FUNC_PTR
PHPAPI extern zend_string *(*php_addslashes)(zend_string *str, int should_free);
-PHPAPI void (*php_stripslashes)(zend_string *str);
+PHPAPI extern void (*php_stripslashes)(zend_string *str);
#else
PHPAPI zend_string *php_addslashes(zend_string *str, int should_free);
PHPAPI void php_stripslashes(zend_string *str);