diff options
Diffstat (limited to 'src/locale')
-rw-r--r-- | src/locale/localeconv.c | 2 | ||||
-rw-r--r-- | src/locale/setlocale.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/locale/localeconv.c b/src/locale/localeconv.c index 4e87bfb3..9dc79302 100644 --- a/src/locale/localeconv.c +++ b/src/locale/localeconv.c @@ -15,7 +15,7 @@ struct lconv * localeconv(void) return &(__get_locale()->lconv); } -__check_0(struct lconv *, NULL, localeconv) +CHECK_0(struct lconv *, NULL, localeconv) /*** fills in a STRUCTDEF(lconv) in the current locale for diff --git a/src/locale/setlocale.c b/src/locale/setlocale.c index 521b118e..bfc15342 100644 --- a/src/locale/setlocale.c +++ b/src/locale/setlocale.c @@ -45,7 +45,7 @@ char * setlocale(int category, const char *locale) return __load_locale(l, mask, locale); } -__check_2(char *, NULL, setlocale, int, const char *) +CHECK_2(char *, NULL, setlocale, int, const char *) /*** sets or retrieves the current global locale of the |