locale_impl.h could have been used, but this function is completely
independent of anything else, and preserving that property seems nice.
#include "locale_impl.h"
#include "libc.h"
#include "atomic.h"
+#include "pleval.h"
struct binding {
struct binding *next;
const unsigned char *__map_file(const char *, size_t *);
int __munmap(void *, size_t);
-unsigned long __pleval(const char *, unsigned long);
char *dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category)
{
#include <stdlib.h>
#include <ctype.h>
+#include "pleval.h"
/*
grammar:
--- /dev/null
+#ifndef PLEVAL_H
+#define PLEVAL_H
+
+unsigned long __pleval(const char *, unsigned long);
+
+#endif