Skip to content

Commit

Permalink
fix macro + nuke warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Beulshausen committed Sep 17, 2001
1 parent 30042dc commit 3a386f8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions sapi/apache/mod_php4.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,12 @@ extern zend_module_entry apache_module_entry;

#ifdef ZTS
extern int php_apache_info_id;
#define AP(v) TSRMG(alloc_globals_id, php_apache_info_struct *, v)
#define AP(v) TSRMG(php_apache_info_id, php_apache_info_struct *, v)
#else
extern php_apache_info_struct php_apache_info;
#define AP(v) (php_apache_info.v)
#endif


#ifdef WIN32
#define S_IXUSR _S_IEXEC
#endif

#endif /* MOD_PHP4_H */

/*
Expand Down

0 comments on commit 3a386f8

Please sign in to comment.