diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-09-27 05:21:15 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-09-27 05:21:15 +0000 |
commit | e83a36ce9f97ac0f59117b3a62fd2dd8461b1fd5 (patch) | |
tree | 85ce10f2fc87fba69e07a13d7036d074e195dea7 /include/locale.h | |
parent | 65eee187317b93773d2409d0e7e2814d34c6a0e1 (diff) |
Rev all the header files to sync things with glibc 2.2.4
Diffstat (limited to 'include/locale.h')
-rw-r--r-- | include/locale.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/locale.h b/include/locale.h index 00e75d5b5..b3736dd11 100644 --- a/include/locale.h +++ b/include/locale.h @@ -6,6 +6,8 @@ #include <features.h> +__BEGIN_DECLS + #ifndef NULL #ifdef __cplusplus #define NULL 0 @@ -70,12 +72,12 @@ struct lconv char n_sign_posn; }; -__BEGIN_DECLS -extern char *setlocale(int __category, __const char *__locale); +/* Set and/or return the current locale. */ +extern char *setlocale (int __category, __const char *__locale) __THROW; /* Return the numeric/monetary information for the current locale. */ -extern struct lconv *localeconv __P ((void)); +extern struct lconv *localeconv (void) __THROW; __END_DECLS |