From: Simon Josefsson Date: Tue, 30 Aug 2005 07:38:53 +0000 (+0000) Subject: * iconvme.h: Add prototype for iconv_alloc. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9872ae9fd2e227178a0a5968734310605c156191;p=pspp * iconvme.h: Add prototype for iconv_alloc. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 0857a801fe..86b7d4cd95 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2005-08-30 "Oskar Liljeblad" + + * iconvme.h: Add prototype for iconv_alloc. + 2005-08-29 Simon Josefsson * iconvme.c: Fix errno. diff --git a/lib/iconvme.h b/lib/iconvme.h index 3820cb8c62..4524d326c9 100644 --- a/lib/iconvme.h +++ b/lib/iconvme.h @@ -22,4 +22,9 @@ extern char *iconv_string (const char *string, const char *from_code, const char *to_code); +#if HAVE_ICONV +# include +extern char *iconv_alloc (iconv_t cd, const char *string); +#endif + #endif /* ICONVME_H */