diff options
author | foobar <sniper@php.net> | 2005-04-19 11:41:04 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-04-19 11:41:04 +0000 |
commit | 0e57528666990120621cc1317f35b696e6ebbd5f (patch) | |
tree | 709f9fbdf6d4c5d6105a8719a4f90222d6ba453a /ext/pdo_pgsql/pdo_pgsql.c | |
parent | cb0c9ac022f8c4112b8309d03261f6ac0f8f365e (diff) | |
download | php-git-0e57528666990120621cc1317f35b696e6ebbd5f.tar.gz |
No c++ comments in C code
Diffstat (limited to 'ext/pdo_pgsql/pdo_pgsql.c')
-rw-r--r-- | ext/pdo_pgsql/pdo_pgsql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_pgsql/pdo_pgsql.c b/ext/pdo_pgsql/pdo_pgsql.c index 912e1ed00d..d48bafc5c9 100644 --- a/ext/pdo_pgsql/pdo_pgsql.c +++ b/ext/pdo_pgsql/pdo_pgsql.c @@ -79,7 +79,7 @@ PHP_MSHUTDOWN_FUNCTION(pdo_pgsql) */ PHP_RINIT_FUNCTION(pdo_pgsql) { - // php_pdo_register_driver(&pdo_pgsql_driver); + /* php_pdo_register_driver(&pdo_pgsql_driver); */ return SUCCESS; } /* }}} */ @@ -88,7 +88,7 @@ PHP_RINIT_FUNCTION(pdo_pgsql) */ PHP_RSHUTDOWN_FUNCTION(pdo_pgsql) { - // php_pdo_unregister_driver(&pdo_pgsql_driver); + /* php_pdo_unregister_driver(&pdo_pgsql_driver); */ return SUCCESS; } /* }}} */ |