diff options
| author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-05-23 22:19:29 +0000 | 
|---|---|---|
| committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-05-23 22:19:29 +0000 | 
| commit | 7a0855aeb50eec99c3bf117cbaabd1c6bed45309 (patch) | |
| tree | 6d2be811843889b68a2ca657add06c3ee533a3c9 /ext/mssql/php_mssql.c | |
| parent | 83d987b48d7d581bdcce19d81f27b8b99c414471 (diff) | |
| download | php-git-7a0855aeb50eec99c3bf117cbaabd1c6bed45309.tar.gz | |
some protos where missing proto keyword
Diffstat (limited to 'ext/mssql/php_mssql.c')
| -rw-r--r-- | ext/mssql/php_mssql.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 0178c45110..b87aafd104 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -1034,7 +1034,7 @@ static void php_mssql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS)  	result->cur_row++;  } -/* {{{ object mssql_fetch_object(int result_id) +/* {{{ proto object mssql_fetch_object(int result_id)     Returns a psuedo-object of the current row in the result set specified by result_id */  PHP_FUNCTION(mssql_fetch_object)  { @@ -1046,7 +1046,7 @@ PHP_FUNCTION(mssql_fetch_object)  /* }}} */ -/* {{{ array mssql_fetch_array(int result_id) +/* {{{ proto array mssql_fetch_array(int result_id)     Returns an associative array of the current row in the result set specified by result_id */  PHP_FUNCTION(mssql_fetch_array)  {  | 
