diff options
author | Christian Heimes <christian@cheimes.de> | 2008-10-02 19:56:01 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-10-02 19:56:01 +0000 |
commit | cebfcabb3b41a601354adcbc5df7727f90ef1a81 (patch) | |
tree | ceff3f9fecbc845d75c2ee3d2b26f35dcc63a912 /Modules/signalmodule.c | |
parent | 24c18e664758ec8d39461faa89ba7097a60c1ba8 (diff) | |
download | cpython-cebfcabb3b41a601354adcbc5df7727f90ef1a81.tar.gz |
Merged revisions 66748 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66748 | christian.heimes | 2008-10-02 21:47:50 +0200 (Thu, 02 Oct 2008) | 1 line
Fixed a couple more C99 comments and one occurence of inline.
........
+ another // comment in bytesobject
Diffstat (limited to 'Modules/signalmodule.c')
-rw-r--r-- | Modules/signalmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 8860b3951e..7464eae1dc 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -107,7 +107,7 @@ timeval_from_double(double d, struct timeval *tv) tv->tv_usec = fmod(d, 1.0) * 1000000.0; } -static inline double +Py_LOCAL_INLINE(double) double_from_timeval(struct timeval *tv) { return tv->tv_sec + (double)(tv->tv_usec / 1000000.0); |