summaryrefslogtreecommitdiffstats
path: root/Modules/_ctypes
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2019-10-15 07:26:12 (GMT)
committerGitHub <noreply@github.com>2019-10-15 07:26:12 (GMT)
commit0b60f64e4343913b4931dc27379d9808e5b78fe1 (patch)
tree197eeeff16c9146b5040bed69d1e0d95c5fdc87b /Modules/_ctypes
parent4d202281c128e2026e78fc5f4cc752b1dafbf3ad (diff)
downloadcpython-0b60f64e4343913b4931dc27379d9808e5b78fe1.zip
cpython-0b60f64e4343913b4931dc27379d9808e5b78fe1.tar.gz
cpython-0b60f64e4343913b4931dc27379d9808e5b78fe1.tar.bz2
bpo-11410: Standardize and use symbol visibility attributes across POSIX and Windows. (GH-16347)
Diffstat (limited to 'Modules/_ctypes')
-rw-r--r--Modules/_ctypes/_ctypes_test.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Modules/_ctypes/_ctypes_test.c b/Modules/_ctypes/_ctypes_test.c
index 8a0e5e9..40da652 100644
--- a/Modules/_ctypes/_ctypes_test.c
+++ b/Modules/_ctypes/_ctypes_test.c
@@ -4,11 +4,7 @@
#include <windows.h>
#endif
-#if defined(MS_WIN32) || defined(__CYGWIN__)
-#define EXPORT(x) __declspec(dllexport) x
-#else
-#define EXPORT(x) x
-#endif
+#define EXPORT(x) Py_EXPORTED_SYMBOL x
/* some functions handy for testing */