• Kevin Modzelewski's avatar
    Harden the CAPI include files a bit · 7c7bb89b
    Kevin Modzelewski authored
    Remove some definitions that should no longer be in there
    (structs for which we have Pyston-internal definitions).
    
    Instead of doing "typedef void PyIntObject", do
    "struct _PyIntObject; typedef struct _PyIntObject PyIntObject;"
    which prevents spurious things like type conversions or
    sizeof(void)'s.
    7c7bb89b
boolobject.h 1.27 KB