]> granicus.if.org Git - php/commitdiff
# Cosmetic fixes and a typo.
authorJouni Ahto <jah@php.net>
Fri, 9 Jun 2000 21:47:20 +0000 (21:47 +0000)
committerJouni Ahto <jah@php.net>
Fri, 9 Jun 2000 21:47:20 +0000 (21:47 +0000)
ext/skeleton/php_skeleton.h
ext/skeleton/skeleton.c

index aaf157925f173efef420eae7eba612e9ae39d141..cf590051b9bb784c2a704c00b71e1285ab3351f0 100644 (file)
@@ -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.
index bb7e390ca61310ae6474bab137d9245b88b9367f..9960d866951fd1d2ca805a843267e39fe77307da 100644 (file)
@@ -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 */