File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,8 @@ function copy_sources() {
331
331
$ files = [
332
332
'skeleton.c ' => $ options ['ext ' ] . '.c ' ,
333
333
'skeleton.stub.php ' => $ options ['ext ' ] . '.stub.php ' ,
334
- 'php_skeleton.h ' => 'php_ ' . $ options ['ext ' ] . '.h '
334
+ 'php_skeleton.h ' => 'php_ ' . $ options ['ext ' ] . '.h ' ,
335
+ 'skeleton_arginfo.h ' => $ options ['ext ' ] . '_arginfo.h '
335
336
];
336
337
337
338
foreach ($ files as $ src_file => $ dst_file ) {
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ PHP_FUNCTION(test1)
26
26
}
27
27
/* }}} */
28
28
29
- /* {{{ string %EXTNAME%_test2 ( [ string $var ] )
29
+ /* {{{ string test2 ( [ string $var ] )
30
30
*/
31
- PHP_FUNCTION (% EXTNAME % _test2 )
31
+ PHP_FUNCTION (test2 )
32
32
{
33
33
char * var = "World" ;
34
34
size_t var_len = sizeof ("World" ) - 1 ;
You can’t perform that action at this time.
0 commit comments