summaryrefslogtreecommitdiff
path: root/Modules/timingmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-01-14 16:55:50 +0000
committerGuido van Rossum <guido@python.org>1994-01-14 16:55:50 +0000
commit4750b6e2a0947210fc60fde244368db8dd895bd7 (patch)
treec0912aeeb24258dc1038e9ded96e04784f936e09 /Modules/timingmodule.c
parentdbe874aac9619806d34503f54f6d2dedd8e4068c (diff)
downloadcpython-4750b6e2a0947210fc60fde244368db8dd895bd7.tar.gz
Make more robust against Minix and Mac
Diffstat (limited to 'Modules/timingmodule.c')
-rw-r--r--Modules/timingmodule.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/Modules/timingmodule.c b/Modules/timingmodule.c
index fcfa8f7284..f15b3fdb5a 100644
--- a/Modules/timingmodule.c
+++ b/Modules/timingmodule.c
@@ -5,9 +5,12 @@
* Author: George V. Neville-Neil
*
* Update History: $Log$
- * Update History: Revision 2.1 1994/01/02 23:22:21 guido
- * Update History: Added George Neville-Neil's timing module
+ * Update History: Revision 2.2 1994/01/14 16:55:50 guido
+ * Update History: Make more robust against Minix and Mac
* Update History:
+ * Revision 2.1 1994/01/02 23:22:21 guido
+ * Added George Neville-Neil's timing module
+ *
* Revision 1.1 93/12/28 13:14:39 gnn
* Initial revision
*
@@ -17,8 +20,10 @@
*/
#ifndef lint
+#ifndef THINK_C
static char rcsid [] = "$Header$" ;
-#endif
+#endif /* THINK_C */
+#endif /* lint */
#include "allobjects.h"
#include "import.h"