diff options
author | steve <steve@FreeBSD.org> | 1999-04-25 17:58:21 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-04-25 17:58:21 +0000 |
commit | a82c653de4d4d1568a90f37adceac962f4cf53d0 (patch) | |
tree | 4e99d2a24db8a213a2bc6af88a757d8d77c64aaa /math/sc | |
parent | 24a8252b977440e147d37626ad805ad114d6d086 (diff) | |
download | FreeBSD-ports-a82c653de4d4d1568a90f37adceac962f4cf53d0.zip FreeBSD-ports-a82c653de4d4d1568a90f37adceac962f4cf53d0.tar.gz |
Use time_t instead of long in a couple of places so this compiles on
a FreeBSD/Alpha box.
Diffstat (limited to 'math/sc')
-rw-r--r-- | math/sc/files/patch-ac | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/math/sc/files/patch-ac b/math/sc/files/patch-ac new file mode 100644 index 0000000..b3b3093 --- /dev/null +++ b/math/sc/files/patch-ac @@ -0,0 +1,29 @@ +--- interp.c.orig Mon May 11 13:43:36 1992 ++++ interp.c Tue Apr 20 18:55:25 1999 +@@ -476,7 +476,7 @@ + dodts(mo, day, yr) + int mo, day, yr; + { +- long trial; ++ time_t trial; + register struct tm *tp; + register int i; + register long jdate; +@@ -551,15 +551,13 @@ + int which; + double when; + { +- long time(); +- + static long t_cache; + static struct tm tm_cache; + struct tm *tp; +- long tloc; ++ time_t tloc; + + if (which == NOW) +- return (double)time((long *)0); ++ return (double)time(NULL); + + tloc = (long)when; + |