summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-07 21:45:10 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-07 21:45:10 (GMT)
commit840ef8f84b4b629b319f1cb960495be0fb8df4b6 (patch)
tree029fbb0cf2627df99195a370ac4f9ba8e1678883 /Modules/posixmodule.c
parent1badd2816361354f5e69d234b4ff3315f5f590cc (diff)
downloadcpython-840ef8f84b4b629b319f1cb960495be0fb8df4b6.zip
cpython-840ef8f84b4b629b319f1cb960495be0fb8df4b6.tar.gz
cpython-840ef8f84b4b629b319f1cb960495be0fb8df4b6.tar.bz2
more linux -> __linux__
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 0b9b3f6..161704f 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -8446,7 +8446,7 @@ done:
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiOn:sendfile",
keywords, &out, &in, &offobj, &count))
return NULL;
-#ifdef linux
+#ifdef __linux__
if (offobj == Py_None) {
do {
Py_BEGIN_ALLOW_THREADS