From: Jouni Ahto Date: Fri, 9 Jun 2000 21:47:20 +0000 (+0000) Subject: # Cosmetic fixes and a typo. X-Git-Tag: php-4.0.1RC~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dee9053cb6b2c3d03e9a95d72f134e05d85b52b0;p=php # Cosmetic fixes and a typo. --- 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 */