diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-08-05 17:34:27 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-08-05 17:34:27 (GMT) |
commit | 6fc4ade2bb44a176555703ebc2dbfb54b57e1148 (patch) | |
tree | c52aa91d4f9e35bb2850ea2aea673e56eabc4ee6 /Makefile.pre.in | |
parent | 1c5471f319a4e5c7bbb56c7ae349b5fe455dc857 (diff) | |
download | cpython-6fc4ade2bb44a176555703ebc2dbfb54b57e1148.zip cpython-6fc4ade2bb44a176555703ebc2dbfb54b57e1148.tar.gz cpython-6fc4ade2bb44a176555703ebc2dbfb54b57e1148.tar.bz2 |
Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API
exposed in Python.h. This function is similar to POSIX
gettimeofday(struct timeval *tp), but available on platforms without
gettimeofday().
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 03195a2..279e8d7 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -314,6 +314,7 @@ PYTHON_OBJS= \ Python/pymath.o \ Python/pystate.o \ Python/pythonrun.o \ + Python/pytime.o \ Python/structmember.o \ Python/symtable.o \ Python/sysmodule.o \ @@ -696,6 +697,7 @@ PYTHON_HEADERS= \ Include/pystrtod.h \ Include/pythonrun.h \ Include/pythread.h \ + Include/pytime.h \ Include/rangeobject.h \ Include/setobject.h \ Include/sliceobject.h \ |