summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-04-05 14:25:41 (GMT)
committerGuido van Rossum <guido@python.org>1992-04-05 14:25:41 (GMT)
commitf1644a54adbb4c7b690560df8ca923f1e7a9e848 (patch)
tree1c9b1154f188aff000b470a4cfcf78d04d12234f /Modules/timemodule.c
parent22db57e4a2e5b649d8cb4c7619a6c0ff04c70cd1 (diff)
downloadcpython-f1644a54adbb4c7b690560df8ca923f1e7a9e848.zip
cpython-f1644a54adbb4c7b690560df8ca923f1e7a9e848.tar.gz
cpython-f1644a54adbb4c7b690560df8ca923f1e7a9e848.tar.bz2
Don't define DO_TIMES (now in posixmodule.c)
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index f886691..e7bf151 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -1,5 +1,5 @@
/***********************************************************
-Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
+Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The
Netherlands.
All Rights Reserved
@@ -62,14 +62,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <time.h>
#endif /* !unix */
-#ifdef sgi
-#define DO_TIMES
-#endif
-
-#ifdef sun
-#define DO_TIMES
-#endif
-
#ifdef DO_TIMES
#include <sys/times.h>
#include <sys/param.h>