From: Martin Mares Date: Tue, 6 Jul 2004 11:03:25 +0000 (+0000) Subject: Added #ifdef guards. X-Git-Tag: holmes-import~964 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=da0f427189c333858494a8aedace2a2c4253e3f6;p=libucw.git Added #ifdef guards. --- diff --git a/lib/lizard.h b/lib/lizard.h index f81ea5f4..51f46bad 100644 --- a/lib/lizard.h +++ b/lib/lizard.h @@ -7,6 +7,9 @@ * of the GNU Lesser General Public License. */ +#ifndef _SHERLOCK_LIZARD_H +#define _SHERLOCK_LIZARD_H + #define LIZARD_NEEDS_CHARS 8 /* The compression routine needs input buffer 8 characters longer, because it * does not check the input bounds all the time. */ @@ -33,3 +36,5 @@ struct lizard_buffer; struct lizard_buffer *lizard_alloc(void); void lizard_free(struct lizard_buffer *buf); byte *lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length); + +#endif