-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add realpath.c to
LIBC_TOP_HALF_MUSL_SOURCES
(#473)
* provide a `realpath` stub In #463, I added stubs for `statvfs`, `chmod`, etc. but forgot to add one for `realpath`, which is also required by `libc++`'s `<filesystem>` implementation. Signed-off-by: Joel Dice <joel.dice@fermyon.com> * remove `realpath` stub and use musl's version instead Signed-off-by: Joel Dice <joel.dice@fermyon.com> --------- Signed-off-by: Joel Dice <joel.dice@fermyon.com>
- Loading branch information
Showing
4 changed files
with
4 additions
and
0 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 |
---|---|---|
|
@@ -1050,6 +1050,7 @@ readlinkat | |
readv | ||
realloc | ||
reallocarray | ||
realpath | ||
recv | ||
regcomp | ||
regerror | ||
|
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 |
---|---|---|
|
@@ -1084,6 +1084,7 @@ readlinkat | |
readv | ||
realloc | ||
reallocarray | ||
realpath | ||
recv | ||
regcomp | ||
regerror | ||
|
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 |
---|---|---|
|
@@ -941,6 +941,7 @@ readlinkat | |
readv | ||
realloc | ||
reallocarray | ||
realpath | ||
recv | ||
regcomp | ||
regerror | ||
|