Skip to content

Commit 8090d29

Browse files
nodejs-github-botMoLow
authored andcommitted
deps: update uvwasi to 0.0.18
PR-URL: #47866 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 169c8ee commit 8090d29

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

deps/uvwasi/include/uvwasi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ extern "C" {
1010

1111
#define UVWASI_VERSION_MAJOR 0
1212
#define UVWASI_VERSION_MINOR 0
13-
#define UVWASI_VERSION_PATCH 17
13+
#define UVWASI_VERSION_PATCH 18
1414
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1515
(UVWASI_VERSION_MINOR << 8) | \
1616
(UVWASI_VERSION_PATCH))

deps/uvwasi/src/uv_mapping.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
2525
#endif
2626

27+
#if !defined(S_ISFIFO) && defined(S_IFMT) && defined(S_IFIFO)
28+
# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
29+
#endif
30+
2731

2832
uvwasi_errno_t uvwasi__translate_uv_error(int err) {
2933
switch (err) {

0 commit comments

Comments
 (0)