Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcwidth.c')
-rw-r--r--newlib/libc/string/wcwidth.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/string/wcwidth.c b/newlib/libc/string/wcwidth.c
index a8c73a542..fc40afd21 100644
--- a/newlib/libc/string/wcwidth.c
+++ b/newlib/libc/string/wcwidth.c
@@ -163,8 +163,7 @@ bisearch(wint_t ucs, const struct interval *table, int max)
*/
int
-_DEFUN (__wcwidth, (ucs),
- const wint_t ucs)
+__wcwidth (const wint_t ucs)
{
#ifdef _MB_CAPABLE
/* sorted list of non-overlapping intervals of East Asian Ambiguous
@@ -329,8 +328,7 @@ _DEFUN (__wcwidth, (ucs),
}
int
-_DEFUN (wcwidth, (wc),
- const wchar_t wc)
+wcwidth (const wchar_t wc)
{
wint_t wi = wc;