summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJouni Ahto <jah@php.net>2000-06-09 21:47:20 +0000
committerJouni Ahto <jah@php.net>2000-06-09 21:47:20 +0000
commitdee9053cb6b2c3d03e9a95d72f134e05d85b52b0 (patch)
tree79e4f7d10cb83a9a3e13366923611a9fab772dc1
parent3570258050ecd292b33cfe6a905d9397ac49ff0c (diff)
downloadphp-git-dee9053cb6b2c3d03e9a95d72f134e05d85b52b0.tar.gz
# Cosmetic fixes and a typo.
-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 */