Browse Source

fix inconsistent dll linkage

pull/1448/head
Anatol Belski 11 years ago
parent
commit
8e528b2792
  1. 5
      sapi/phpdbg/phpdbg_parser.y

5
sapi/phpdbg/phpdbg_parser.y

@ -23,6 +23,11 @@ static int yyerror(const char *msg);
ZEND_EXTERN_MODULE_GLOBALS(phpdbg);
#ifdef _MSC_VER
#define YYMALLOC malloc
#define YYFREE free
#endif
%}
%pure-parser

Loading…
Cancel
Save