summaryrefslogtreecommitdiff
path: root/inffast.h
diff options
context:
space:
mode:
authorHans Kristian Rosbach <hk-git@circlestorm.org>2015-05-25 23:00:54 +0200
committerHans Kristian Rosbach <hk-git@circlestorm.org>2015-05-25 23:00:54 +0200
commit2c22452ff2275217a6eff264a86e3fa9f355a8aa (patch)
tree4d36cc4d51b1588f8b3c84dacc30dd095a51c87e /inffast.h
parentd1de3909245b9152993cf8dced0c4d69fe04efd4 (diff)
Style cleanup for inflate code
Diffstat (limited to 'inffast.h')
-rw-r--r--inffast.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/inffast.h b/inffast.h
index 5b8a1f6..47a218c 100644
--- a/inffast.h
+++ b/inffast.h
@@ -1,3 +1,5 @@
+#ifndef INFFAST_H_
+#define INFFAST_H_
/* inffast.h -- header to use inffast.c
* Copyright (C) 1995-2003, 2010 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
@@ -8,4 +10,6 @@
subject to change. Applications should only use zlib.h.
*/
-void ZLIB_INTERNAL inflate_fast (z_stream *strm, unsigned start);
+void ZLIB_INTERNAL inflate_fast(z_stream *strm, unsigned start);
+
+#endif /* INFFAST_H_ */