From: Martin Mares Date: Sun, 14 Jan 2001 20:49:41 +0000 (+0000) Subject: Guard against multiple inclusion. X-Git-Tag: holmes-import~1592 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=b3f16cf83f9594d2c4e88d1c3ffa5458b1a9f245;p=libucw.git Guard against multiple inclusion. --- diff --git a/lib/fastbuf.h b/lib/fastbuf.h index e215b3ca..77345c2a 100644 --- a/lib/fastbuf.h +++ b/lib/fastbuf.h @@ -4,6 +4,9 @@ * (c) 1997--2000 Martin Mares */ +#ifndef _SHERLOCK_FASTBUF_H +#define _SHERLOCK_FASTBUF_H + #ifndef EOF #include #endif @@ -317,3 +320,5 @@ bputsn(struct fastbuf *f, byte *b) #define bgetp(f) bgetl(f) #define bputp(f,l) bputl(f,l) #endif + +#endif