From 827f18e2001f662cd0c09ce0ba815af052a930d1 Mon Sep 17 00:00:00 2001 From: foobar Date: Tue, 8 Mar 2005 21:45:51 +0000 Subject: [PATCH] MFH --- main/main.c | 4 ++-- main/php.h | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/main/main.c b/main/main.c index e8b62669ae..456face14d 100644 --- a/main/main.c +++ b/main/main.c @@ -541,9 +541,9 @@ PHPAPI void php_verror(const char *docref, const char *params, int type, const c } /* }}} */ -/* {{{ php_error_docref */ +/* {{{ php_error_docref0 */ /* See: CODING_STANDARDS for details. */ -PHPAPI void php_error_docref(const char *docref TSRMLS_DC, int type, const char *format, ...) +PHPAPI void php_error_docref0(const char *docref TSRMLS_DC, int type, const char *format, ...) { va_list args; diff --git a/main/php.h b/main/php.h index b854cd4f01..552251b269 100644 --- a/main/php.h +++ b/main/php.h @@ -299,13 +299,15 @@ PHPAPI void php_verror(const char *docref, const char *params, int type, const c #endif /* PHPAPI void php_error(int type, const char *format, ...); */ -PHPAPI void php_error_docref(const char *docref TSRMLS_DC, int type, const char *format, ...) +PHPAPI void php_error_docref0(const char *docref TSRMLS_DC, int type, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, PHP_ATTR_FMT_OFFSET + 3, PHP_ATTR_FMT_OFFSET + 4); PHPAPI void php_error_docref1(const char *docref TSRMLS_DC, const char *param1, int type, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, PHP_ATTR_FMT_OFFSET + 4, PHP_ATTR_FMT_OFFSET + 5); PHPAPI void php_error_docref2(const char *docref TSRMLS_DC, const char *param1, const char *param2, int type, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, PHP_ATTR_FMT_OFFSET + 5, PHP_ATTR_FMT_OFFSET + 6); +#define php_error_docref php_error_docref0 + #define zenderror phperror #define zendlex phplex -- 2.50.1