diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-10 16:44:59 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-10 16:44:59 +0000 |
commit | 073b148167887c51f30fff8f7c569fcf28c5bb72 (patch) | |
tree | 0e7362611b67eb01a95c7ef65322aef0a1b05411 /sapi/cgi/php_getopt.h | |
parent | 59b53ea2c8f1dbb4797ffac2a31caad392927b48 (diff) | |
download | php-git-073b148167887c51f30fff8f7c569fcf28c5bb72.tar.gz |
More abstraction
Diffstat (limited to 'sapi/cgi/php_getopt.h')
-rw-r--r-- | sapi/cgi/php_getopt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/cgi/php_getopt.h b/sapi/cgi/php_getopt.h index 5f3af64b64..3b1356d6cd 100644 --- a/sapi/cgi/php_getopt.h +++ b/sapi/cgi/php_getopt.h @@ -1,9 +1,9 @@ /* Borrowed from Apache NT Port */ #include "php.h" -PHPAPI extern char *ap_php_optarg; -PHPAPI extern int ap_php_optind; +extern char *ap_php_optarg; +extern int ap_php_optind; extern int ap_php_opterr; extern int ap_php_optopt; -PHPAPI int ap_php_getopt(int argc, char* const *argv, const char *optstr); +int ap_php_getopt(int argc, char* const *argv, const char *optstr); |