summaryrefslogtreecommitdiff
path: root/textproc/2bsd-diff/files/patch-diff.h
blob: 645ca36f631d06c252a2224048022b69b6815b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--- diff.h.orig	1985-08-28 21:44:35 UTC
+++ diff.h
@@ -5,11 +5,17 @@
  */
 
 #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>
+#include <string.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/wait.h>
+#include <arpa/inet.h>
 
 /*
  * Output format options
@@ -61,7 +67,7 @@ int	context;		/* lines of context to be printed */
  */
 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 +83,20 @@ char	**diffargv;		/* option list to pass to recursive 
 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[];
+
+/* declarations */
+void diffdir(char **argv);
+void diffreg();
+void noroom();
+void setfile(char **fpp, char **epp, char *file);
+int useless(register char *cp);
+int min(int, int);
+int max(int, int);
+void prune();
+int skipline(int);