summaryrefslogtreecommitdiffstats
path: root/Python/pytime.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-09-10 10:37:59 (GMT)
committerT. Wouters <thomas@python.org>2019-09-10 10:37:59 (GMT)
commitf1c19031fd5f4cf6faad539e30796b42954527db (patch)
treee891a6fb68b448b3f15998f0bd1ce7f509fa004e /Python/pytime.c
parentc8dfa7333d6317d7cd8c5c7366023f5a668e3f91 (diff)
downloadcpython-f1c19031fd5f4cf6faad539e30796b42954527db.zip
cpython-f1c19031fd5f4cf6faad539e30796b42954527db.tar.gz
cpython-f1c19031fd5f4cf6faad539e30796b42954527db.tar.bz2
bpo-38068: Clean up gettimeofday configure logic. (GH-15775)
Assume gettimeofday exists and takes two arguments.
Diffstat (limited to 'Python/pytime.c')
-rw-r--r--Python/pytime.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/pytime.c b/Python/pytime.c
index 9ff3006..54ddfc9 100644
--- a/Python/pytime.c
+++ b/Python/pytime.c
@@ -718,11 +718,7 @@ pygettimeofday(_PyTime_t *tp, _Py_clock_info_t *info, int raise)
#else /* HAVE_CLOCK_GETTIME */
/* test gettimeofday() */
-#ifdef GETTIMEOFDAY_NO_TZ
- err = gettimeofday(&tv);
-#else
err = gettimeofday(&tv, (struct timezone *)NULL);
-#endif
if (err) {
if (raise) {
PyErr_SetFromErrno(PyExc_OSError);