summaryrefslogtreecommitdiff
path: root/src/locale/pleval.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-09 00:55:28 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:31 -0400
commit15230afc8dd5e6493da7cb5fcf0153672dab79d6 (patch)
treec6cb102499c400317dfbedff5edc4917f352330a /src/locale/pleval.h
parent50a298ea3b122efbb31e7674a20e6c7dc30ca1dc (diff)
downloadmusl-15230afc8dd5e6493da7cb5fcf0153672dab79d6.tar.gz
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.
Diffstat (limited to 'src/locale/pleval.h')
-rw-r--r--src/locale/pleval.h6
1 files changed, 6 insertions, 0 deletions
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