X-Git-Url: http://rtime.felk.cvut.cz/gitweb/rtems-devel.git/blobdiff_plain/10b2983fac8faddb905129911bb8248d97679aa0..4b03a407862b0ea1c3acd0305e24818ef1943757:/rtems-patches/current/rtems-inttypes-wcs-disable-fix.patch diff --git a/rtems-patches/current/rtems-inttypes-wcs-disable-fix.patch b/rtems-patches/current/rtems-inttypes-wcs-disable-fix.patch new file mode 100644 index 0000000..570afd1 --- /dev/null +++ b/rtems-patches/current/rtems-inttypes-wcs-disable-fix.patch @@ -0,0 +1,15 @@ +Index: rtems/cpukit/libcsupport/include/inttypes.h +=================================================================== +--- rtems.orig/cpukit/libcsupport/include/inttypes.h ++++ rtems/cpukit/libcsupport/include/inttypes.h +@@ -281,8 +281,8 @@ extern intmax_t imaxabs(intmax_t j); + extern imaxdiv_t imaxdiv(intmax_t numer, intmax_t denomer); + extern intmax_t strtoimax(const char *__restrict, char **__restrict, int); + extern uintmax_t strtoumax(const char *__restrict, char **__restrict, int); +-extern intmax_t wcstoimax(const wchar_t *__restrict, wchar_t **__restrict, int); +-extern uintmax_t wcstoumax(const wchar_t *__restrict, wchar_t **__restrict, int); ++//extern intmax_t wcstoimax(const wchar_t *__restrict, wchar_t **__restrict, int); ++//extern uintmax_t wcstoumax(const wchar_t *__restrict, wchar_t **__restrict, int); + + #ifdef __cplusplus + }