Skip to content

Commit

Permalink
MFH
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar committed Mar 8, 2005
1 parent 44abd52 commit 75db37c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions main/php.h
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,13 @@ 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_docref0(const char *docref TSRMLS_DC, int type, const char *format, ...)
PHPAPI void php_error_docref(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

Expand Down

0 comments on commit 75db37c

Please sign in to comment.