mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
b93ba8e95c
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.
16 lines
413 B
Plaintext
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)))
|