From 15230afc8dd5e6493da7cb5fcf0153672dab79d6 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 9 Sep 2018 00:55:28 -0400 Subject: add internal header for declaring __pleval function (used by gettext) locale_impl.h could have been used, but this function is completely independent of anything else, and preserving that property seems nice. --- src/locale/pleval.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/locale/pleval.h (limited to 'src/locale/pleval.h') diff --git a/src/locale/pleval.h b/src/locale/pleval.h new file mode 100644 index 00000000..398d1b98 --- /dev/null +++ b/src/locale/pleval.h @@ -0,0 +1,6 @@ +#ifndef PLEVAL_H +#define PLEVAL_H + +unsigned long __pleval(const char *, unsigned long); + +#endif -- cgit v1.2.1