summaryrefslogtreecommitdiff
path: root/Parser/grammar1.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-04 03:18:48 +0000
committerTim Peters <tim.peters@gmail.com>2001-12-04 03:18:48 +0000
commit5f56d502989220b69b621085e73be299590f7f13 (patch)
tree8aef457695c2b413c4c4d9bad8596227520ee8eb /Parser/grammar1.c
parentaa0b33f97525ef222618d2212a62f0c4be17b918 (diff)
downloadcpython-5f56d502989220b69b621085e73be299590f7f13.tar.gz
The parser doesn't need its own implementation of assert, and having its
own interfered with including Python.h. Remove Python's assert.h.
Diffstat (limited to 'Parser/grammar1.c')
-rw-r--r--Parser/grammar1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/grammar1.c b/Parser/grammar1.c
index b2631b785d..912d3872d2 100644
--- a/Parser/grammar1.c
+++ b/Parser/grammar1.c
@@ -1,8 +1,8 @@
/* Grammar subroutines needed by parser */
+#include "Python.h"
#include "pgenheaders.h"
-#include "assert.h"
#include "grammar.h"
#include "token.h"