summaryrefslogtreecommitdiff
path: root/Include/pytime.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-13 15:25:56 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-13 15:25:56 +0000
commit346b19b30ed21b42efaae6e5ea23a8dfd3b18271 (patch)
treea4f6c5763ac9d4e3b9121a1340e0d41bc58b6365 /Include/pytime.h
parent97b6f6f6c83c2a66345f73055fa0a8fcbec16bc3 (diff)
downloadcpython-346b19b30ed21b42efaae6e5ea23a8dfd3b18271.tar.gz
De-duplicate contents of pytime.h
Diffstat (limited to 'Include/pytime.h')
-rw-r--r--Include/pytime.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/Include/pytime.h b/Include/pytime.h
index 53dd37ac35..8ace98221f 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 */