Fix cpython2 for C23. am: cd4dcab179

Original change: https://android-review.googlesource.com/c/platform/external/python/cpython2/+/3320777

Change-Id: Ic63e654e24b1d493c3c634feefd0b2862a764327
Signed-off-by: Automerger Merge Worker <[email protected]>
diff --git a/Include/asdl.h b/Include/asdl.h
index 84e837e..9a6ec4a 100644
--- a/Include/asdl.h
+++ b/Include/asdl.h
@@ -5,9 +5,7 @@
 typedef PyObject * string;
 typedef PyObject * object;
 
-#ifndef __cplusplus
-typedef enum {false, true} bool;
-#endif
+#include <stdbool.h>
 
 /* It would be nice if the code generated by asdl_c.py was completely
    independent of Python, but it is a goal the requires too much work