1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/textproc/agrep/files/patch-bitap.c
Dirk Meyer afcd9bf461 - add missing prototypes
- add missing includes
- fix build with clang
Feature safe:	yes
2011-11-27 12:47:41 +00:00

30 lines
695 B
C

--- bitap.c.orig 1992-01-17 22:00:15.000000000 +0100
+++ bitap.c 2011-11-27 13:33:41.000000000 +0100
@@ -13,6 +13,8 @@
#include "agrep.h"
+#include <unistd.h>
+
extern unsigned Init1, D_endpos, endposition, Init[], Mask[], Bit[];
extern int DELIMITER, FILENAMEONLY, D_length, I, AND, REGEX, JUMP, INVERSE;
extern char D_pattern[];
@@ -22,7 +24,7 @@
/* bitap dispatches job */
-bitap(old_D_pat, Pattern, fd, M, D)
+void bitap(old_D_pat, Pattern, fd, M, D)
char old_D_pat[], *Pattern; int fd, M, D;
{
char c;
@@ -143,7 +145,7 @@
return;
}
-fill_buf(fd, buf, record_size)
+int fill_buf(fd, buf, record_size)
int fd, record_size; unsigned char *buf;
{
int num_read=1;