parent
7c81fa89e7
commit
3a39648358
|
@ -5,6 +5,9 @@
|
|||
|
||||
#include "gzguts.h"
|
||||
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-non-prototype"
|
||||
|
||||
/* gzclose() is in a separate file so that it is linked in only if it is used.
|
||||
That way the other gzclose functions can be used instead to avoid linking in
|
||||
unneeded compression or decompression routines. */
|
||||
|
@ -23,3 +26,6 @@ int ZEXPORT gzclose(file)
|
|||
return gzclose_r(file);
|
||||
#endif
|
||||
}
|
||||
|
||||
#pragma clang diagnostic pop
|
||||
|
||||
|
|
Loading…
Reference in New Issue