summaryrefslogtreecommitdiff
path: root/pyconfig.h
blob: 78bc6bbeb04be6f85d813f029a95dd6b8f3f7e49 (plain)
1
2
3
4
5
6
7
8
9
#include <bits/wordsize.h>

#if __WORDSIZE == 32
#include "pyconfig-32.h"
#elif __WORDSIZE == 64
#include "pyconfig-64.h"
#else
#error "Unknown word size"
#endif