opnsense-ports/textproc/2bsd-diff/files/patch-diff.h
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

37 lines
818 B
C

--- diff.h.orig Thu Aug 29 06:44:35 1985
+++ diff.h Wed Mar 19 01:35:49 2003
@@ -5,10 +5,11 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <ctype.h>
#include <sys/param.h>
#include <sys/stat.h>
-#include <sys/dir.h>
+#include <dirent.h>
#include <signal.h>
/*
@@ -61,7 +62,7 @@
*/
int status;
int anychange;
-char *tempfile; /* used when comparing against std input */
+char tempfile[MAXPATHLEN]; /* used when comparing against std input */
/*
* Variables for diffdir.
@@ -77,9 +78,9 @@
char *file1, *file2, *efile1, *efile2;
struct stat stb1, stb2;
-char *malloc(), *talloc(), *ralloc();
+char *talloc(), *ralloc();
char *savestr(), *splice(), *splicen();
-char *mktemp(), *copytemp(), *rindex();
-int done();
+char *copytemp();
+sig_t done();
extern char diffh[], diff[], pr[];