about summary refs log tree commit diff
path: root/src/engine/e_huffman.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/e_huffman.h')
-rw-r--r--src/engine/e_huffman.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/engine/e_huffman.h b/src/engine/e_huffman.h
index c4e20223..635c74a1 100644
--- a/src/engine/e_huffman.h
+++ b/src/engine/e_huffman.h
@@ -1,10 +1,6 @@
 #ifndef __HUFFMAN_HEADER__
 #define __HUFFMAN_HEADER__
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 enum
 {
 	HUFFMAN_EOF_SYMBOL = 256,
@@ -84,8 +80,4 @@ int huffman_compress(HUFFMAN_STATE *huff, const void *input, int input_size, voi
 */
 int huffman_decompress(HUFFMAN_STATE *huff, const void *input, int input_size, void *output, int output_size);
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif /* __HUFFMAN_HEADER__ */