From ebddd16c75c076cfdd1843a795604d2896ef6442 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Tue, 8 Feb 2000 22:18:21 +0000 Subject: [PATCH] Fix declaration --- Zend/zend_operators.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index ef2f801ac7c..a2888ab7e99 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1230,7 +1230,7 @@ ZEND_API int zend_binary_strcmp(char *s1, uint len1, char *s2, uint len2) } } -ZEND_API int zend_binary_strncmp(char *s1, uint len1, char *s2, uint len2, int length) +ZEND_API int zend_binary_strncmp(char *s1, uint len1, char *s2, uint len2, uint length) { int retval;