1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/mail/mh/files/patch-aj
Hidetoshi Shimokawa 93aa89f88c Fix for alpha.
- remove 'long time()' and add '#include <time.h>'.
1999-01-16 12:15:50 +00:00

21 lines
469 B
Plaintext

--- sbr/fmtcompile.c.orig Wed Dec 1 13:01:22 1993
+++ sbr/fmtcompile.c Sat Jan 16 20:48:09 1999
@@ -12,6 +12,7 @@
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
+#include <time.h>
static struct format *formatvec; /* array to hold formats */
static struct format *next_fp; /* next free format slot */
@@ -128,9 +129,6 @@
(char *)0, 0, 0, 0, 0
};
-
-
-long time ();
static struct ftable *lookup(name)
register char *name;