forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openwrt#316 from seragh/owrt-musl-1.1.16
musl: bump to 1.1.16
- Loading branch information
Showing
6 changed files
with
9 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ if USE_MUSL | |
config MUSL_VERSION | ||
string | ||
depends on USE_MUSL | ||
default "1.1.15" | ||
default "1.1.16" | ||
|
||
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
67 changes: 0 additions & 67 deletions
67
toolchain/musl/patches/010-fix-regression-in-tcsetattr-on-all-mips-archs.patch
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -45,11 +45,7 @@ Signed-off-by: Hauke Mehrtens <[email protected]> | |
+#else | ||
+#define __fp(x, y) | ||
+#endif | ||
|
||
-_Noreturn void err(int, const char *, ...); | ||
-_Noreturn void verr(int, const char *, va_list); | ||
-_Noreturn void errx(int, const char *, ...); | ||
-_Noreturn void verrx(int, const char *, va_list); | ||
+ | ||
+void warn(const char *, ...) __fp(1, 2); | ||
+void vwarn(const char *, va_list) __fp(1, 0); | ||
+void warnx(const char *, ...) __fp(1, 2); | ||
|
@@ -59,7 +55,11 @@ Signed-off-by: Hauke Mehrtens <[email protected]> | |
+_Noreturn void verr(int, const char *, va_list) __fp(2, 0); | ||
+_Noreturn void errx(int, const char *, ...) __fp(2, 3); | ||
+_Noreturn void verrx(int, const char *, va_list) __fp(2, 0); | ||
+ | ||
|
||
-_Noreturn void err(int, const char *, ...); | ||
-_Noreturn void verr(int, const char *, va_list); | ||
-_Noreturn void errx(int, const char *, ...); | ||
-_Noreturn void verrx(int, const char *, va_list); | ||
+#undef __fp | ||
|
||
#ifdef __cplusplus | ||
|
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 was deleted.
Oops, something went wrong.