Files
ports/core/python3/pyconfig.h
2023-05-03 16:38:34 +02:00

17 lines
296 B
C

/* 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