From a62220fefad22c53d3d8c7c7a486fd7ef9fb2f7d Mon Sep 17 00:00:00 2001 From: Gedare Bloom Date: Mon, 16 Mar 2015 13:23:15 -0400 Subject: shell: remove rtems ifdef, upstream is correct --- cpukit/libmisc/shell/hexdump-conv.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cpukit/libmisc/shell/hexdump-conv.c b/cpukit/libmisc/shell/hexdump-conv.c index 95d8a87974..ae1540f07b 100644 --- a/cpukit/libmisc/shell/hexdump-conv.c +++ b/cpukit/libmisc/shell/hexdump-conv.c @@ -142,15 +142,7 @@ retry: pad = 3 - width; if (pad < 0) pad = 0; - #if defined(__rtems__) - { - wchar_t wc_tmp[2] = {0,0}; - wc_tmp[0] = wc; - (void)printf("%*s%lc", pad, "", wc_tmp); - } - #else (void)printf("%*s%lc", pad, "", wc); - #endif pr->mbleft = clen - 1; } } else { -- cgit v1.2.3