diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-30 01:56:43 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-30 01:56:43 +0000 |
commit | 1c25b8dd532961ecb09932b182457ca0adcf8b57 (patch) | |
tree | 2996afec821096218156f1d914301ad589edf897 /ext/pdf/php_pdf.h | |
parent | b57703825be0ff40d34ee257ce14c453c4bffb98 (diff) | |
download | php-git-1c25b8dd532961ecb09932b182457ca0adcf8b57.tar.gz |
Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on the way
Diffstat (limited to 'ext/pdf/php_pdf.h')
-rw-r--r-- | ext/pdf/php_pdf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pdf/php_pdf.h b/ext/pdf/php_pdf.h index d1dfb5a373..2ed27c2109 100644 --- a/ext/pdf/php_pdf.h +++ b/ext/pdf/php_pdf.h @@ -32,9 +32,9 @@ extern zend_module_entry pdf_module_entry; #define pdf_module_ptr &pdf_module_entry -extern PHP_MINFO_FUNCTION(pdf); -extern PHP_MINIT_FUNCTION(pdf); -extern PHP_MSHUTDOWN_FUNCTION(pdf); +PHP_MINFO_FUNCTION(pdf); +PHP_MINIT_FUNCTION(pdf); +PHP_MSHUTDOWN_FUNCTION(pdf); PHP_FUNCTION(pdf_new); /* new function */ PHP_FUNCTION(pdf_delete); /* new function */ PHP_FUNCTION(pdf_open_file); |