summaryrefslogtreecommitdiff
path: root/libc/misc/wchar
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-10 18:26:05 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-10 18:26:05 +0000
commitacb5ff2ef347b7bf9b5e62a2425ca8006b433c09 (patch)
tree5808c93a28ed38baabdc332a524aa5c3d6a13610 /libc/misc/wchar
parenta61cb3bea1aca152c8009ced4d2df127aa93fea0 (diff)
Remove trailing ';' from strong_alias, thx Bernhard Fischer
Diffstat (limited to 'libc/misc/wchar')
-rw-r--r--libc/misc/wchar/wstdio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/misc/wchar/wstdio.c b/libc/misc/wchar/wstdio.c
index b0f259001..91917683a 100644
--- a/libc/misc/wchar/wstdio.c
+++ b/libc/misc/wchar/wstdio.c
@@ -263,8 +263,8 @@ UNLOCKED(wint_t,fgetwc,(register FILE *stream),(stream))
return wi;
}
-strong_alias(fgetwc_unlocked,getwc_unlocked);
-strong_alias(fgetwc,getwc);
+strong_alias(fgetwc_unlocked,getwc_unlocked)
+strong_alias(fgetwc,getwc)
#endif
/**********************************************************************/
@@ -329,8 +329,8 @@ UNLOCKED(wint_t,fputwc,(wchar_t wc, FILE *stream),(wc, stream))
#endif
}
-strong_alias(fputwc_unlocked,putwc_unlocked);
-strong_alias(fputwc,putwc);
+strong_alias(fputwc_unlocked,putwc_unlocked)
+strong_alias(fputwc,putwc)
#endif
/**********************************************************************/