mirror of git://sourceware.org/git/glibc.git
* iconv/iconvconfig.c (name_insert): Make static to avoid warning.
* iconv/gconv_cache.c: Include stdio.h for puts declaration.
This commit is contained in:
parent
06b5289f83
commit
53e6290617
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
|
||||||
|
|
@ -968,7 +968,7 @@ write_output (void)
|
||||||
size_t total;
|
size_t total;
|
||||||
|
|
||||||
/* Function to insert the names. */
|
/* Function to insert the names. */
|
||||||
void name_insert (const void *nodep, VISIT value, int level)
|
static void name_insert (const void *nodep, VISIT value, int level)
|
||||||
{
|
{
|
||||||
struct name *name;
|
struct name *name;
|
||||||
unsigned int idx;
|
unsigned int idx;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue