mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
miniz.h: lose '#pragma once' and use proper header guard
This commit is contained in:
parent
44af62a16c
commit
2012cb5484
1 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
#ifndef Q_MINIZ_H
|
||||
#define Q_MINIZ_H 1
|
||||
|
||||
#ifndef MINIZ_EXPORT
|
||||
#define MINIZ_EXPORT
|
||||
#endif
|
||||
|
@ -114,8 +117,6 @@
|
|||
uses the 64-bit variants: fopen64(), stat64(), etc. Otherwise you won't be able to process large files
|
||||
(i.e. 32-bit stat() fails for me on files > 0x7FFFFFFF bytes).
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
|
||||
#if 1 /* QUAKESPASM-SPECIFIC CONFIG: */
|
||||
|
||||
|
@ -721,3 +722,5 @@ MINIZ_EXPORT mz_bool mz_zip_end(mz_zip_archive *pZip);
|
|||
#endif
|
||||
|
||||
#endif /* MINIZ_NO_ARCHIVE_APIS */
|
||||
|
||||
#endif /* Q_MINIZ_H */
|
||||
|
|
Loading…
Reference in a new issue