blob: 89181b4e0d58dc7cbca053ef163cb2a2ccd1f9de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* pyconfig.h stub */
#ifndef __STUB__PYCONFIG_H__
#define __STUB__PYCONFIG_H__
#if defined(__x86_64__) || \
defined(__sparc64__) || \
defined(__arch64__) || \
defined(__powerpc64__) || \
defined(__s390x__)
#include "pyconfig-64.h"
#else
#include "pyconfig-32.h"
#endif
#endif
|