summaryrefslogtreecommitdiffstats
path: root/AppPkg/Applications/Python/Python-2.7.2/Include/pgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Include/pgen.h')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Include/pgen.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Include/pgen.h b/AppPkg/Applications/Python/Python-2.7.2/Include/pgen.h
new file mode 100644
index 0000000000..af84852b39
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.2/Include/pgen.h
@@ -0,0 +1,18 @@
+#ifndef Py_PGEN_H
+#define Py_PGEN_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+/* Parser generator interface */
+
+extern grammar *meta_grammar(void);
+
+struct _node;
+extern grammar *pgen(struct _node *);
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* !Py_PGEN_H */