diff options
author | steve <steve@FreeBSD.org> | 1999-06-22 17:05:03 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-06-22 17:05:03 +0000 |
commit | 1e6838ae6b6a98a518acae72264950893595acfa (patch) | |
tree | 20eeb5dce41aa9d93251ede80a908d4be987149f /games/nethack34/files | |
parent | 3885b4943698e3173c39cf4438dc5776b63d89fa (diff) | |
download | FreeBSD-ports-1e6838ae6b6a98a518acae72264950893595acfa.zip FreeBSD-ports-1e6838ae6b6a98a518acae72264950893595acfa.tar.gz |
time(3) returns a time_t and not a long.
Diffstat (limited to 'games/nethack34/files')
-rw-r--r-- | games/nethack34/files/patch-ad | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/games/nethack34/files/patch-ad b/games/nethack34/files/patch-ad index a147295..4ff9c98 100644 --- a/games/nethack34/files/patch-ad +++ b/games/nethack34/files/patch-ad @@ -1,6 +1,5 @@ -diff -ruN ./include/system.h ../nethack-3.2.2/include/system.h ---- ./include/system.h Mon Nov 4 23:01:25 1996 -+++ ../nethack-3.2.2/include/system.h Sun Mar 21 17:25:02 1999 +--- include/system.h.orig Mon Nov 4 08:01:25 1996 ++++ include/system.h Sat Jun 19 16:18:02 1999 @@ -80,7 +80,7 @@ # if !defined(SUNOS4) || defined(RANDOM) E void FDECL(srandom, (unsigned int)); @@ -10,3 +9,12 @@ diff -ruN ./include/system.h ../nethack-3.2.2/include/system.h E int FDECL(srandom, (unsigned int)); # endif # endif +@@ -510,7 +510,7 @@ + # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) + E time_t FDECL(time, (time_t *)); + # else +-E long FDECL(time, (time_t *)); ++E time_t FDECL(time, (time_t *)); + # endif /* ULTRIX */ + + #ifdef VMS |