getopt.h conflicted with system include file

This commit is contained in:
Sascha Schumann 1999-05-29 13:53:59 +00:00
parent b219d491b9
commit 52463124be
4 changed files with 3 additions and 3 deletions

9
php_getopt.h Normal file
View file

@ -0,0 +1,9 @@
/* Borrowed from Apache NT Port */
#include "php.h"
PHPAPI extern char *optarg;
PHPAPI extern int optind;
extern int opterr;
extern int optopt;
PHPAPI int getopt(int argc, char* const *argv, const char *optstr);