-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct signatures for
FinalizerPtr
s
- Loading branch information
Showing
5 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
if os(wasi) | ||
-- https://github.com/haskellari/splitmix/pull/73 | ||
source-repository-package | ||
type: git | ||
location: https://github.com/amesgen/splitmix | ||
tag: ebd790e992a83fe1b16b6182677106295d9afba2 | ||
|
||
-- https://github.com/UnkindPartition/tasty/pull/365 | ||
source-repository-package | ||
type: git | ||
location: https://github.com/UnkindPartition/tasty | ||
subdir: core | ||
tag: 88a0258702e0784fc26e1c1db6c0bcb3bd49904a | ||
|
||
package zlib | ||
flags: +bundled-c-zlib | ||
|
||
package splitmix | ||
tests: False | ||
benchmarks: False | ||
|
||
allow-newer: zlib:tasty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include "extras.h" | ||
|
||
void hsInflateEnd(z_streamp strm) { | ||
inflateEnd(strm); | ||
} | ||
|
||
void hsDeflateEnd(z_streamp strm) { | ||
deflateEnd(strm); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifndef HS_ZLIB_EXTRAS | ||
#define HS_ZLIB_EXTRAS | ||
|
||
#include "zlib.h" | ||
|
||
void hsInflateEnd(z_streamp strm); | ||
void hsDeflateEnd(z_streamp strm); | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters