summaryrefslogtreecommitdiffstats
path: root/trek/schedule.c
diff options
context:
space:
mode:
Diffstat (limited to 'trek/schedule.c')
-rw-r--r--trek/schedule.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/trek/schedule.c b/trek/schedule.c
index d3c0c286..455c5e06 100644
--- a/trek/schedule.c
+++ b/trek/schedule.c
@@ -1,4 +1,4 @@
-/* $NetBSD: schedule.c,v 1.6 2006/03/19 00:56:12 christos Exp $ */
+/* $NetBSD: schedule.c,v 1.7 2009/03/31 18:48:16 christos Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -34,13 +34,14 @@
#if 0
static char sccsid[] = "@(#)schedule.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: schedule.c,v 1.6 2006/03/19 00:56:12 christos Exp $");
+__RCSID("$NetBSD: schedule.c,v 1.7 2009/03/31 18:48:16 christos Exp $");
#endif
#endif /* not lint */
#include <stdio.h>
#include <math.h>
#include <err.h>
+#include <limits.h>
#include "trek.h"
/*
@@ -135,7 +136,7 @@ struct event *e1;
e->evcode, e->date, e->x, e->y, e->systemname);
# endif
Now.eventptr[e->evcode & E_EVENT] = 0;
- e->date = 1e50;
+ e->date = TOOLARGE;
e->evcode = 0;
return;
}