diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-13 15:25:56 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-13 15:25:56 (GMT) |
commit | e81c806be78a1d68a0a47d949e000e83c4437016 (patch) | |
tree | a8d7ace4d1c37e8e252aee8b1f14618db3c7d5bf /Include | |
parent | 4d2240915f31c81e7696fe9a8784c581ef00c000 (diff) | |
download | cpython-e81c806be78a1d68a0a47d949e000e83c4437016.zip cpython-e81c806be78a1d68a0a47d949e000e83c4437016.tar.gz cpython-e81c806be78a1d68a0a47d949e000e83c4437016.tar.bz2 |
De-duplicate contents of pytime.h
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pytime.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/Include/pytime.h b/Include/pytime.h index 53dd37a..8ace982 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -33,38 +33,3 @@ PyAPI_FUNC(void) _PyTime_Init(void); #endif #endif /* Py_PYTIME_H */ -#ifndef Py_PYTIME_H -#define Py_PYTIME_H - -#include "pyconfig.h" /* include for defines */ - -/************************************************************************** -Symbols and macros to supply platform-independent interfaces to time related -functions and constants -**************************************************************************/ -#ifdef __cplusplus -extern "C" { -#endif - -#ifdef HAVE_GETTIMEOFDAY -typedef struct timeval _PyTime_timeval; -#else -typedef struct { - time_t tv_sec; /* seconds since Jan. 1, 1970 */ - long tv_usec; /* and microseconds */ -} _PyTime_timeval; -#endif - -/* Similar to POSIX gettimeofday but cannot fail. If system gettimeofday - * fails or is not available, fall back to lower resolution clocks. - */ -PyAPI_FUNC(void) _PyTime_gettimeofday(_PyTime_timeval *tp); - -/* Dummy to force linking. */ -PyAPI_FUNC(void) _PyTime_Init(void); - -#ifdef __cplusplus -} -#endif - -#endif /* Py_PYTIME_H */ |