1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

time(3) returns a time_t and not a long.

This commit is contained in:
Steve Price 1999-06-22 17:55:49 +00:00
parent 4d3f57a635
commit 3e94dbb52b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=19683
2 changed files with 22 additions and 0 deletions

11
news/rkive/files/patch-ac Normal file
View File

@ -0,0 +1,11 @@
--- news_arc.c.orig Sun Jun 20 13:06:45 1999
+++ news_arc.c Sun Jun 20 13:07:05 1999
@@ -855,7 +855,7 @@
int seqnum;
int zfill;
{
- long time();
+ time_t time();
struct tm *localtime();
long clk;

11
news/rkive/files/patch-ad Normal file
View File

@ -0,0 +1,11 @@
--- rkive.c.orig Sun Jun 20 13:07:44 1999
+++ rkive.c Sun Jun 20 13:08:02 1999
@@ -700,7 +700,7 @@
struct group_archive *ng;
{
long clock;
- long time();
+ time_t time();
char *ctime();
char logbuf[BUFSIZ];