diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-22 18:00:25 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-22 18:00:25 +0100 |
commit | 0737819efdd0bae112d16d874cac7e747e43cd08 (patch) | |
tree | 98a9ac84f7f347ae530c14852c68870682f3d04c /lib/hard-locale.h | |
parent | 163a663518f33bab48b28431972e580b366b4d49 (diff) | |
parent | e670957a8693f860cf7d77fed4ce6b4b056a8083 (diff) |
Merge branch 'release/debian/1.3-1'debian/1.3-1
Diffstat (limited to 'lib/hard-locale.h')
-rw-r--r-- | lib/hard-locale.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/hard-locale.h b/lib/hard-locale.h index 21c5c546..5d40e522 100644 --- a/lib/hard-locale.h +++ b/lib/hard-locale.h @@ -16,7 +16,12 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ #ifndef HARD_LOCALE_H_ -# define HARD_LOCALE_H_ 1 +#define HARD_LOCALE_H_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + /* Return true if the specified CATEGORY of the current locale is hard, i.e. different from the C or POSIX locale that has a fixed behavior. @@ -25,4 +30,9 @@ per-thread locale. */ extern bool hard_locale (int category); + +#ifdef __cplusplus +} +#endif + #endif /* HARD_LOCALE_H_ */ |