1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/vietnamese/vnelvis/files/patch-08
David E. O'Brien b93ba8e95c VNElvis is a clone of vi/ex (the standard UNIX editor) that allows the
displaying and editing of documents in the Vietnamese 8-bit VISCII (VIetnamese
Standard Code for Information Interchange) data format using the 7-bit VIQR
(VIetnamese Quoted Readable) input method.
1996-12-06 12:37:38 +00:00

16 lines
413 B
Plaintext

--- recycle.c.orig Wed Dec 5 08:51:08 1990
+++ recycle.c Wed Dec 4 23:42:53 1996
@@ -18,7 +18,11 @@
#ifndef NO_RECYCLE
/* this whole file would have be skipped if NO_RECYCLE is defined */
-extern long lseek();
+#if BSD && (BSD >= 199306)
+# include <unistd.h>
+#else
+ extern long lseek();
+#endif
#define BTST(bitno, byte) ((byte) & (1 << (bitno)))
#define BSET(bitno, byte) ((byte) |= (1 << (bitno)))