Skip to content

Commit

Permalink
compatibility with Swift Package Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Coeur committed Nov 11, 2024
1 parent 32b6697 commit bb9b904
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions compat/ioapi.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "mz.h"
#include "mz_strm.h"
#include "mz_strm_mem.h"
#include "../mz.h"
#include "../mz_strm.h"
#include "../mz_strm_mem.h"

#include "ioapi.h"

Expand Down
10 changes: 5 additions & 5 deletions compat/unzip.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
See the accompanying LICENSE file for the full text of the license.
*/

#include "mz.h"
#include "mz_os.h"
#include "mz_strm.h"
#include "mz_strm_os.h"
#include "mz_zip.h"
#include "../mz.h"
#include "../mz_os.h"
#include "../mz_strm.h"
#include "../mz_strm_os.h"
#include "../mz_zip.h"

#include <stdio.h> /* SEEK */

Expand Down
10 changes: 5 additions & 5 deletions compat/zip.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
See the accompanying LICENSE file for the full text of the license.
*/

#include "mz.h"
#include "mz_os.h"
#include "mz_strm.h"
#include "mz_strm_os.h"
#include "mz_zip.h"
#include "../mz.h"
#include "../mz_os.h"
#include "../mz_strm.h"
#include "../mz_strm_os.h"
#include "../mz_zip.h"

#include "zip.h"

Expand Down

0 comments on commit bb9b904

Please sign in to comment.