From e0c332844a6571fc859120edf2032940d8dad64b Mon Sep 17 00:00:00 2001 From: dholland Date: Thu, 31 Jan 2008 05:19:44 +0000 Subject: Fix y2038 bug: time_t != int. --- atc/extern.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'atc/extern.h') diff --git a/atc/extern.h b/atc/extern.h index 0e9cca5a..6ac2ed7a 100644 --- a/atc/extern.h +++ b/atc/extern.h @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.13 2005/08/10 17:53:28 rpaulo Exp $ */ +/* $NetBSD: extern.h,v 1.14 2008/01/31 05:19:44 dholland Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -46,7 +46,8 @@ extern char GAMES[]; extern const char *filename; -extern int clck, safe_planes, start_time, test_mode; +extern int clck, safe_planes, test_mode; +extern time_t start_time; #if 0 extern FILE *filein, *fileout; -- cgit v1.2.3