X-Git-Url: http://rtime.felk.cvut.cz/gitweb/rtems-devel.git/blobdiff_plain/0bdc3c01ab8b47fac02fb69acd3d5ed7bd3eb358..358fe240a131639611095b5467c3c8c93c90b6ae:/rtems-patches/rtems-inttypes-wcs-disable-fix.patch diff --git a/rtems-patches/rtems-inttypes-wcs-disable-fix.patch b/rtems-patches/rtems-inttypes-wcs-disable-fix.patch new file mode 100644 index 0000000..570afd1 --- /dev/null +++ b/rtems-patches/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 + }