Skip to content

Commit

Permalink
Add blank lines between if blocks in miniz_zip.c for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Jun 8, 2022
1 parent 76b3a87 commit 482c77e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions miniz_zip.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
#define MZ_FFLUSH fflush
#define MZ_FREOPEN mz_freopen
#define MZ_DELETE_FILE remove

#elif defined(__MINGW32__) || defined(__WATCOMC__)
#ifndef MINIZ_NO_TIME
#include <sys/utime.h>
Expand All @@ -111,6 +112,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
#define MZ_FFLUSH fflush
#define MZ_FREOPEN(f, m, s) freopen(f, m, s)
#define MZ_DELETE_FILE remove

#elif defined(__TINYC__)
#ifndef MINIZ_NO_TIME
#include <sys/utime.h>
Expand All @@ -126,6 +128,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
#define MZ_FFLUSH fflush
#define MZ_FREOPEN(f, m, s) freopen(f, m, s)
#define MZ_DELETE_FILE remove

#elif defined(__USE_LARGEFILE64) /* gcc, clang */
#ifndef MINIZ_NO_TIME
#include <utime.h>
Expand All @@ -141,6 +144,7 @@ static int mz_stat64(const char *path, struct __stat64 *buffer)
#define MZ_FFLUSH fflush
#define MZ_FREOPEN(p, m, s) freopen64(p, m, s)
#define MZ_DELETE_FILE remove

#elif defined(__APPLE__)
#ifndef MINIZ_NO_TIME
#include <utime.h>
Expand Down

0 comments on commit 482c77e

Please sign in to comment.