diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-09 00:55:28 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:31 -0400 |
commit | 15230afc8dd5e6493da7cb5fcf0153672dab79d6 (patch) | |
tree | c6cb102499c400317dfbedff5edc4917f352330a /src/locale/pleval.h | |
parent | 50a298ea3b122efbb31e7674a20e6c7dc30ca1dc (diff) | |
download | musl-15230afc8dd5e6493da7cb5fcf0153672dab79d6.tar.gz musl-15230afc8dd5e6493da7cb5fcf0153672dab79d6.tar.xz musl-15230afc8dd5e6493da7cb5fcf0153672dab79d6.zip |
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.h | 6 |
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 |