Skip to content

Commit 482c77e

Browse files
committed
Add blank lines between if blocks in miniz_zip.c for readability
1 parent 76b3a87 commit 482c77e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

miniz_zip.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
9696
#define MZ_FFLUSH fflush
9797
#define MZ_FREOPEN mz_freopen
9898
#define MZ_DELETE_FILE remove
99+
99100
#elif defined(__MINGW32__) || defined(__WATCOMC__)
100101
#ifndef MINIZ_NO_TIME
101102
#include <sys/utime.h>
@@ -111,6 +112,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
111112
#define MZ_FFLUSH fflush
112113
#define MZ_FREOPEN(f, m, s) freopen(f, m, s)
113114
#define MZ_DELETE_FILE remove
115+
114116
#elif defined(__TINYC__)
115117
#ifndef MINIZ_NO_TIME
116118
#include <sys/utime.h>
@@ -126,6 +128,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
126128
#define MZ_FFLUSH fflush
127129
#define MZ_FREOPEN(f, m, s) freopen(f, m, s)
128130
#define MZ_DELETE_FILE remove
131+
129132
#elif defined(__USE_LARGEFILE64) /* gcc, clang */
130133
#ifndef MINIZ_NO_TIME
131134
#include <utime.h>
@@ -141,6 +144,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
141144
#define MZ_FFLUSH fflush
142145
#define MZ_FREOPEN(p, m, s) freopen64(p, m, s)
143146
#define MZ_DELETE_FILE remove
147+
144148
#elif defined(__APPLE__)
145149
#ifndef MINIZ_NO_TIME
146150
#include <utime.h>

0 commit comments

Comments
 (0)