Skip to content

Commit f46549e

Browse files
committed
Rename internal function.
1 parent d9f0dab commit f46549e

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

kernel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ PHPCL_FUNCTION(cl_get_kernel_info);
1717
PHPCL_FUNCTION(cl_create_kernel);
1818

1919
PHPCL_LOCAL cl_int
20-
php_cl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
21-
zval *arg_value, phpcl_c_type_t type TSRMLS_DC);
20+
phpcl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
21+
zval *arg_value, phpcl_c_type_t type TSRMLS_DC);
2222

2323
END_EXTERN_C()
2424
#endif

kernel_arg.cxx

+9-9
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
BEGIN_EXTERN_C()
1313

1414
PHPCL_LOCAL cl_int
15-
php_cl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
16-
zval *arg_value, phpcl_c_type_t type TSRMLS_DC)
15+
phpcl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
16+
zval *arg_value, phpcl_c_type_t type TSRMLS_DC)
1717
{
1818
return CL_SUCCESS;
1919
}
2020

2121
END_EXTERN_C()
2222

2323
/*
24-
* Local variables:
25-
* tab-width: 4
26-
* c-basic-offset: 4
27-
* End:
28-
* vim600: noet sw=4 ts=4 fdm=marker
29-
* vim<600: noet sw=4 ts=4
30-
*/
24+
* Local variables:
25+
* tab-width: 4
26+
* c-basic-offset: 4
27+
* End:
28+
* vim600: noet sw=4 ts=4 fdm=marker
29+
* vim<600: noet sw=4 ts=4
30+
*/

0 commit comments

Comments
 (0)