+2003-01-07 Ulrich Drepper <drepper@redhat.com>
+
+ * explodename.c (_nl_find_language.c): Mark as static.
+ * loadinfo.h: Remove _nl_find_language prototype.
+
2005-04-30 Bruno Haible <bruno@clisp.org>
* langprefs.c: Use #include <CoreFoundation/...> syntax. It's a
/* @@ end of prolog @@ */
-char *
+/* Split a locale name NAME into a leading language part and all the
+ rest. Return a pointer to the first character after the language,
+ i.e. to the first byte of the rest. */
+static char *_nl_find_language (const char *name);
+
+static char *
_nl_find_language (const char *name)
{
while (name[0] != '\0' && name[0] != '_' && name[0] != '@'
const char **special, const char **sponsor,
const char **revision);
-/* Split a locale name NAME into a leading language part and all the
- rest. Return a pointer to the first character after the language,
- i.e. to the first byte of the rest. */
-extern char *_nl_find_language (const char *name);
-
#endif /* loadinfo.h */