blob: bf92dc7e2e04747b51908a66c667a82ba0def1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$NetBSD: patch-ak,v 1.2 2004/09/20 02:08:58 dmcmahill Exp $
--- src/fasthenry/parse_command_line.c.orig Tue Aug 3 22:17:15 2004
+++ src/fasthenry/parse_command_line.c
@@ -38,6 +38,7 @@ operation of Software or Licensed Progra
#include "induct.h"
#include <string.h>
+#include <time.h>
#ifdef SOLARIS
#include <sys/systeminfo.h>
#endif
@@ -558,7 +559,7 @@ ind_opts *opts;
fix_and_print_opts(opts)
ind_opts *opts;
{
- long clock;
+ time_t clock;
char hostname[BUFSIZ];
fprintf(stdout, "Running FastHenry %s (%s)\n", FHVERSION, FHDATE);
|