summaryrefslogtreecommitdiff
path: root/textproc/agrep/files/patch-compat.c
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2011-11-27 12:47:41 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2011-11-27 12:47:41 +0000
commitafcd9bf461ee813bd17c0718ef3211b5d09fc890 (patch)
treefefa270e267f6810de6521f1804e0f4e468613e5 /textproc/agrep/files/patch-compat.c
parent- Update to 0.16 (diff)
- add missing prototypes
- add missing includes - fix build with clang Feature safe: yes
Notes
Notes: svn path=/head/; revision=286502
Diffstat (limited to 'textproc/agrep/files/patch-compat.c')
-rw-r--r--textproc/agrep/files/patch-compat.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/textproc/agrep/files/patch-compat.c b/textproc/agrep/files/patch-compat.c
new file mode 100644
index 000000000000..92a28e671dcb
--- /dev/null
+++ b/textproc/agrep/files/patch-compat.c
@@ -0,0 +1,29 @@
+--- compat.c.orig 1992-01-21 14:36:26.000000000 +0100
++++ compat.c 2011-11-27 13:25:35.000000000 +0100
+@@ -1,17 +1,18 @@
+ /* test the conflicts between options */
+ #include <stdio.h>
++#include <stdlib.h>
+
+ extern int FILENAMEONLY, APPROX, PAT_FILE, COUNT, INVERSE, BESTMATCH;
+-extern FILEOUT;
+-extern REGEX;
+-extern DELIMITER;
+-extern WHOLELINE;
+-extern LINENUM;
+-extern I, S, DD;
+-extern JUMP;
++extern int FILEOUT;
++extern int REGEX;
++extern int DELIMITER;
++extern int WHOLELINE;
++extern int LINENUM;
++extern int I, S, DD;
++extern int JUMP;
+ extern char Progname[32];
+
+-compat()
++void compat()
+ {
+ int i, j, k;
+ if(BESTMATCH) if(COUNT || FILENAMEONLY || APPROX || PAT_FILE) {