| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 443477e commit d95a5bb
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ extern "C" { | |||
| 10 | 10 | ||
| 11 | 11 | #define UVWASI_VERSION_MAJOR 0 | |
| 12 | 12 | #define UVWASI_VERSION_MINOR 0 | |
| 13 | - #define UVWASI_VERSION_PATCH 17 | ||
| 13 | + #define UVWASI_VERSION_PATCH 18 | ||
| 14 | 14 | #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ | |
| 15 | 15 | (UVWASI_VERSION_MINOR << 8) | \ | |
| 16 | 16 | (UVWASI_VERSION_PATCH)) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,6 +24,10 @@ | |||
| 24 | 24 | # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) | |
| 25 | 25 | #endif | |
| 26 | 26 | ||
| 27 | + #if !defined(S_ISFIFO) && defined(S_IFMT) && defined(S_IFIFO) | ||
| 28 | + # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) | ||
| 29 | + #endif | ||
| 30 | + | ||
| 27 | 31 | ||
| 28 | 32 | uvwasi_errno_t uvwasi__translate_uv_error(int err) { | |
| 29 | 33 | switch (err) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments