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 <midawson@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
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

+1-1
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

+4
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)