--- old/usr/src/head/ctype.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/ctype.h Wed Jul 16 00:55:20 2014 @@ -94,7 +94,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif extern int isalnum_l(int, locale_t); --- old/usr/src/head/langinfo.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/langinfo.h Wed Jul 16 00:55:20 2014 @@ -155,7 +155,7 @@ #if defined(_XPG7) || !defined(_STRICT_SYMBOLS) #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif #if defined(__STDC__) --- old/usr/src/head/locale.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/locale.h Wed Jul 16 00:55:20 2014 @@ -81,7 +81,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif #if defined(__STDC__) --- old/usr/src/head/monetary.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/monetary.h Wed Jul 16 00:55:20 2014 @@ -45,7 +45,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif extern ssize_t strfmon_l(char *_RESTRICT_KYWD, size_t, locale_t, --- old/usr/src/head/string.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/string.h Wed Jul 16 00:55:20 2014 @@ -97,7 +97,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif extern int strcoll_l(const char *, const char *, locale_t); --- old/usr/src/head/strings.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/strings.h Wed Jul 16 00:55:20 2014 @@ -67,7 +67,7 @@ #if defined(_XPG7) #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif extern int strcasecmp_l(const char *, const char *, locale_t); extern int strncasecmp_l(const char *, const char *, size_t, locale_t); --- old/usr/src/head/time.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/time.h Wed Jul 16 00:55:20 2014 @@ -377,7 +377,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif #if defined(__STDC__) --- old/usr/src/head/wchar.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/wchar.h Wed Jul 16 00:55:20 2014 @@ -172,7 +172,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif extern size_t wcsnlen(const wchar_t *, size_t); --- old/usr/src/head/wctype.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/wctype.h Wed Jul 16 00:55:20 2014 @@ -147,7 +147,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif #if defined(__STDC__) --- old/usr/src/head/xlocale.h Wed Jul 16 00:55:20 2014 +++ new/usr/src/head/xlocale.h Wed Jul 16 00:55:20 2014 @@ -45,7 +45,7 @@ #ifndef _LOCALE_T #define _LOCALE_T -typedef struct locale *locale_t; +typedef struct _locale *locale_t; #endif extern int mbsinit_l(const mbstate_t *, locale_t); --- old/usr/src/lib/libc/port/locale/localeimpl.c Wed Jul 16 00:55:20 2014 +++ new/usr/src/lib/libc/port/locale/localeimpl.c Wed Jul 16 00:55:20 2014 @@ -98,7 +98,7 @@ extern struct lc_ctype lc_ctype_posix; extern struct lc_collate lc_collate_posix; -static struct locale posix_locale = { +static struct _locale posix_locale = { /* locdata */ .locdata = { &__posix_ctype_locdata, --- old/usr/src/lib/libc/port/locale/localeimpl.h Wed Jul 16 00:55:21 2014 +++ new/usr/src/lib/libc/port/locale/localeimpl.h Wed Jul 16 00:55:21 2014 @@ -55,9 +55,9 @@ }; -struct locale { +struct _locale { struct locdata *locdata[LC_ALL]; - struct locale *next; + struct _locale *next; int on_list; /* on linked list */ char locname[(ENCODING_LEN+1)*NLOCDATA + 1];