summaryrefslogtreecommitdiff
path: root/Include/pytime.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-06 10:46:49 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-06 10:46:49 -0700
commitaf580dff4af3cb812cdd7a229a4a65059b3bc1ee (patch)
tree69954d6e499793f75edc045e31ade0e0eabb6053 /Include/pytime.h
parent45c7514de406d9ed84e46d80500fb4ac87a94ea8 (diff)
downloadcpython-git-af580dff4af3cb812cdd7a229a4a65059b3bc1ee.tar.gz
replace PY_LONG_LONG with long long
Diffstat (limited to 'Include/pytime.h')
-rw-r--r--Include/pytime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pytime.h b/Include/pytime.h
index 98612e1307..859321b34d 100644
--- a/Include/pytime.h
+++ b/Include/pytime.h
@@ -78,7 +78,7 @@ PyAPI_FUNC(_PyTime_t) _PyTime_FromSeconds(int seconds);
((_PyTime_t)(seconds) * (1000 * 1000 * 1000))
/* Create a timestamp from a number of nanoseconds. */
-PyAPI_FUNC(_PyTime_t) _PyTime_FromNanoseconds(PY_LONG_LONG ns);
+PyAPI_FUNC(_PyTime_t) _PyTime_FromNanoseconds(long long ns);
/* Convert a number of seconds (Python float or int) to a timetamp.
Raise an exception and return -1 on error, return 0 on success. */