diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-14 18:25:16 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-14 18:25:16 +0000 |
commit | 1fb61df8a5d7f801be8fb5850ff639b26fc7dd0c (patch) | |
tree | ac5415670848e3834080e57c11be0a2fcaf03b64 /ext/standard/php3_syslog.h | |
parent | 67296f0704403c84a5921011dbe44d4fee578cc5 (diff) | |
download | php-git-1fb61df8a5d7f801be8fb5850ff639b26fc7dd0c.tar.gz |
* Include all of the standard modules in internal_functions.c.in. Stig - is that
the way you intended it to be? How does the basic_functions module get in there?
* Fix to get MySQL objects working, even though I'll probably make a dedicated
MySQL object in the future.
Diffstat (limited to 'ext/standard/php3_syslog.h')
-rw-r--r-- | ext/standard/php3_syslog.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/standard/php3_syslog.h b/ext/standard/php3_syslog.h index 028a5aa018..458e597254 100644 --- a/ext/standard/php3_syslog.h +++ b/ext/standard/php3_syslog.h @@ -27,6 +27,10 @@ | | +----------------------------------------------------------------------+ */ + +#ifndef _PHP_SYSLOG_H +#define _PHP_SYSLOG_H + #if HAVE_SYSLOG_H extern php3_module_entry syslog_module_entry; #define syslog_module_ptr &syslog_module_entry @@ -42,3 +46,7 @@ extern void php3_define_syslog_variables(INTERNAL_FUNCTION_PARAMETERS); #else #define syslog_module_ptr NULL #endif + +#define phpext_syslog_ptr syslog_module_ptr + +#endif /* _PHP_SYSLOG_H */ |