Replace all instances of assert with abort.
# include <string.h>
#endif
#include <ctype.h>
# include <string.h>
#endif
#include <ctype.h>
extern void perror (const char *s);
extern void perror (const char *s);
yydebug = 1;
#endif
status = yyparse (]AT_PARAM_IF([&result, &count])[);
yydebug = 1;
#endif
status = yyparse (]AT_PARAM_IF([&result, &count])[);
- assert (global_result == result);
- assert (global_count == count);
+ if (global_result != result)
+ abort ();
+ if (global_count != count)
+ abort ();