blob: 19c7eead9320043e635a8c9781153cd69b7f84e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- recycle.c.orig Tue Nov 6 11:53:56 1990
+++ recycle.c Thu Aug 15 04:51:43 1996
@@ -18,7 +18,9 @@
#ifndef NO_RECYCLE
/* this whole file would have be skipped if NO_RECYCLE is defined */
+#if !(defined(BSD) && (BSD >= 199103))
extern long lseek();
+#endif
#define BTST(bitno, byte) ((byte) & (1 << (bitno)))
#define BSET(bitno, byte) ((byte) |= (1 << (bitno)))
|