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

This commit is contained in:
Steve Price 2000-02-20 21:00:08 +00:00
parent 6aac6c7a81
commit 8d40b7b2de
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26060

11
net/pmf/files/patch-af Normal file
View file

@ -0,0 +1,11 @@
--- misc.c.orig Sat Feb 19 21:56:34 2000
+++ misc.c Sat Feb 19 21:56:43 2000
@@ -16,7 +16,7 @@
#include "config.h"
#include "globals.h"
-extern long time();
+extern time_t time();
extern char *ctime();
/*---------------------------------------------------------------------------*/