From 13215eeb7ea0585fa87030c04ba4e4fc301a1d8b Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 3 Mar 2001 17:22:16 +0000 Subject: [PATCH] Define FASTBUF_BYTES_PER_(O|P). --- lib/fastbuf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/fastbuf.h b/lib/fastbuf.h index d831ed36..cd08fa8a 100644 --- a/lib/fastbuf.h +++ b/lib/fastbuf.h @@ -340,11 +340,15 @@ void bdirect_write_commit(struct fastbuf *f, byte *pos); #define bputo(f,l) bput5(f,l) #define bgetp(f) bgetq(f) #define bputp(f,l) bputq(f,l) +#define FASTBUF_BYTES_PER_O 5 +#define FASTBUF_BYTES_PER_P 8 #else #define bgeto(f) bgetl(f) #define bputo(f,l) bputl(f,l) #define bgetp(f) bgetl(f) #define bputp(f,l) bputl(f,l) +#define FASTBUF_BYTES_PER_O 4 +#define FASTBUF_BYTES_PER_P 4 #endif #endif -- 2.39.2