blob: f6e8009f7947fa5c6548f0b2699c3d06422621ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$NetBSD: patch-ag,v 1.1 1999/08/30 02:35:10 simonb Exp $
--- source/main.c.orig Fri Jul 22 11:47:27 1994
+++ source/main.c Sun Aug 29 09:25:32 1999
@@ -92,7 +92,7 @@
#ifndef MAC
#ifndef GEMDOS
#ifndef AMIGA
-long time();
+time_t time();
#endif
#endif
char *getenv();
@@ -363,7 +363,7 @@
#ifdef MAC
birth_date = time ((time_t *)0);
#else
- birth_date = time ((long *)0);
+ birth_date = time ((time_t *)0);
#endif
char_inven_init();
py.flags.food = 7500;
|