summaryrefslogtreecommitdiff
path: root/lib/libc/locale
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/locale')
-rw-r--r--lib/libc/locale/runetype.c2
-rw-r--r--lib/libc/locale/tolower.c4
-rw-r--r--lib/libc/locale/toupper.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/locale/runetype.c b/lib/libc/locale/runetype.c
index a2ee9e605b59..ec1c2ec2f403 100644
--- a/lib/libc/locale/runetype.c
+++ b/lib/libc/locale/runetype.c
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
unsigned long
___runetype(c)
- _BSD_CT_RUNE_T_ c;
+ __ct_rune_t c;
{
int x;
_RuneRange *rr = &_CurrentRuneLocale->runetype_ext;
diff --git a/lib/libc/locale/tolower.c b/lib/libc/locale/tolower.c
index 42392d75726e..f8caecba79ab 100644
--- a/lib/libc/locale/tolower.c
+++ b/lib/libc/locale/tolower.c
@@ -40,9 +40,9 @@ __FBSDID("$FreeBSD$");
#include <stdio.h>
#include <rune.h>
-_BSD_CT_RUNE_T_
+__ct_rune_t
___tolower(c)
- _BSD_CT_RUNE_T_ c;
+ __ct_rune_t c;
{
int x;
_RuneRange *rr = &_CurrentRuneLocale->maplower_ext;
diff --git a/lib/libc/locale/toupper.c b/lib/libc/locale/toupper.c
index 1871f8a0cc0b..6ce67577cde1 100644
--- a/lib/libc/locale/toupper.c
+++ b/lib/libc/locale/toupper.c
@@ -40,9 +40,9 @@ __FBSDID("$FreeBSD$");
#include <stdio.h>
#include <rune.h>
-_BSD_CT_RUNE_T_
+__ct_rune_t
___toupper(c)
- _BSD_CT_RUNE_T_ c;
+ __ct_rune_t c;
{
int x;
_RuneRange *rr = &_CurrentRuneLocale->mapupper_ext;