summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/skeleton/php_skeleton.h2
-rw-r--r--ext/skeleton/skeleton.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/skeleton/php_skeleton.h b/ext/skeleton/php_skeleton.h
index aaf157925f..cf590051b9 100644
--- a/ext/skeleton/php_skeleton.h
+++ b/ext/skeleton/php_skeleton.h
@@ -47,7 +47,7 @@ PHP_RSHUTDOWN_FUNCTION(extname);
PHP_MINFO_FUNCTION(extname);
PHP_FUNCTION(confirm_extname_compiled); /* For testing, remove later. */
-__function_declarations_here__
+/* __function_declarations_here__ */
/* Fill in this structure and use entries in it
for thread safety instead of using true globals.
diff --git a/ext/skeleton/skeleton.c b/ext/skeleton/skeleton.c
index bb7e390ca6..9960d86695 100644
--- a/ext/skeleton/skeleton.c
+++ b/ext/skeleton/skeleton.c
@@ -37,7 +37,7 @@ php_extname_globals extname_globals;
*/
function_entry extname_functions[] = {
PHP_FE(confirm_extname_compiled, NULL) /* For testing, remove later. */
-__function_entries_here__
+ /* __function_entries_here__ */
{NULL, NULL, NULL} /* Must be the last line in extname_functions[] */
};
@@ -108,7 +108,7 @@ PHP_MINFO_FUNCTION(extname)
/* Every user-visible function in PHP should document itself in the source */
/* {{{ proto string confirm_extname_compiled(string arg)
Return a string to confirm that the module is compiled in */
-PHP_FUNCTION(extname_test)
+PHP_FUNCTION(confirm_extname_compiled)
{
zval **arg;
int len;
@@ -130,7 +130,7 @@ PHP_FUNCTION(extname_test)
this convention for the convenience of others editing your code.
*/
-__function_stubs_here__
+/* __function_stubs_here__ */
#endif /* HAVE_EXTNAME */