python3/pyconfig.h
2019-09-30 11:14:35 -04:00

10 lines
162 B
C

#include <bits/wordsize.h>
#if __WORDSIZE == 32
#include "pyconfig-32.h"
#elif __WORDSIZE == 64
#include "pyconfig-64.h"
#else
#error "Unknown word size"
#endif