diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-04-10 02:59:26 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-04-10 02:59:26 +0000 |
commit | cfc995507eeee6456c2fcd8315fd1df8e1c8c984 (patch) | |
tree | ef43da943392abe58b162ef8c4f7746e81a2a733 /system/musl/stdio.patch | |
parent | c9ad7b95087dbe1d6670937f3b2833e1247cd56e (diff) | |
download | packages-cfc995507eeee6456c2fcd8315fd1df8e1c8c984.tar.gz packages-cfc995507eeee6456c2fcd8315fd1df8e1c8c984.tar.bz2 packages-cfc995507eeee6456c2fcd8315fd1df8e1c8c984.tar.xz packages-cfc995507eeee6456c2fcd8315fd1df8e1c8c984.zip |
system/musl: bump to 1.1.22
Diffstat (limited to 'system/musl/stdio.patch')
-rw-r--r-- | system/musl/stdio.patch | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/system/musl/stdio.patch b/system/musl/stdio.patch deleted file mode 100644 index 9ddfa5738..000000000 --- a/system/musl/stdio.patch +++ /dev/null @@ -1,69 +0,0 @@ -diff --git a/include/alltypes.h.in b/include/alltypes.h.in -index 622ca01..4cc879b 100644 ---- a/include/alltypes.h.in -+++ b/include/alltypes.h.in -@@ -57,6 +57,7 @@ TYPEDEF struct { unsigned __attr; } pthread_condattr_t; - TYPEDEF struct { unsigned __attr; } pthread_barrierattr_t; - TYPEDEF struct { unsigned __attr[2]; } pthread_rwlockattr_t; - -+STRUCT _IO_FILE { char __x; }; - TYPEDEF struct _IO_FILE FILE; - - TYPEDEF struct __mbstate_t { unsigned __opaque1, __opaque2; } mbstate_t; -diff --git a/include/stdio.h b/include/stdio.h -index afadd91..3604198 100644 ---- a/include/stdio.h -+++ b/include/stdio.h -@@ -11,6 +11,10 @@ extern "C" { - #define __NEED___isoc_va_list - #define __NEED_size_t - -+#if __STDC_VERSION__ < 201112L -+#define __NEED_struct__IO_FILE -+#endif -+ - #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \ - || defined(_BSD_SOURCE) -diff --git a/include/wchar.h b/include/wchar.h -index 369b1e9..88eb55b 100644 ---- a/include/wchar.h -+++ b/include/wchar.h -@@ -14,6 +14,10 @@ extern "C" { - #define __NEED_wint_t - #define __NEED_mbstate_t - -+#if __STDC_VERSION__ < 201112L -+#define __NEED_struct__IO_FILE -+#endif -+ - #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) - #define __NEED_locale_t -diff --git a/src/include/stdio.h b/src/include/stdio.h -index 534c690..fae3755 100644 ---- a/src/include/stdio.h -+++ b/src/include/stdio.h -@@ -1,6 +1,8 @@ - #ifndef STDIO_H - #define STDIO_H - -+#define __DEFINED_struct__IO_FILE -+ - #include "../../include/stdio.h" - - #undef stdin -diff --git a/src/include/wchar.h b/src/include/wchar.h -index e69de29..79f5d0e 100644 ---- a/src/include/wchar.h -+++ b/src/include/wchar.h -@@ -0,0 +1,9 @@ -+#ifndef WCHAR_H -+#define WCHAR_H -+ -+#define __DEFINED_struct__IO_FILE -+ -+#include "../../include/wchar.h" -+ -+#endif -+ |