From da0f427189c333858494a8aedace2a2c4253e3f6 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 6 Jul 2004 11:03:25 +0000 Subject: [PATCH] Added #ifdef guards. --- lib/lizard.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.2