1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/vietnamese/vnelvis/files/patch-08

16 lines
413 B
Plaintext
Raw Normal View History

--- 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)))