aboutsummaryrefslogtreecommitdiffstats
path: root/ucs
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-10-09 10:21:30 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-10-09 10:21:30 +0200
commite1d211de0928eec84230d73e5705b592ab86bca9 (patch)
treedf3b78c5c03391aabaccc69e178c9c06c1f9a9a3 /ucs
parent0a29dc278b3c573681fb41a6e33ca4c8b1b375d7 (diff)
downloadfetchmail-e1d211de0928eec84230d73e5705b592ab86bca9.tar.gz
fetchmail-e1d211de0928eec84230d73e5705b592ab86bca9.tar.bz2
fetchmail-e1d211de0928eec84230d73e5705b592ab86bca9.zip
Fix missing prototype for norm_charmap.
Diffstat (limited to 'ucs')
-rw-r--r--ucs/norm_charmap.c1
-rw-r--r--ucs/norm_charmap.h7
2 files changed, 8 insertions, 0 deletions
diff --git a/ucs/norm_charmap.c b/ucs/norm_charmap.c
index e2a9aaf9..dedad326 100644
--- a/ucs/norm_charmap.c
+++ b/ucs/norm_charmap.c
@@ -25,6 +25,7 @@
*/
#include "config.h" /* import AC_C_CONST effects */
+#include "norm_charmap.h"
#include <string.h>
diff --git a/ucs/norm_charmap.h b/ucs/norm_charmap.h
new file mode 100644
index 00000000..a051231d
--- /dev/null
+++ b/ucs/norm_charmap.h
@@ -0,0 +1,7 @@
+#ifndef _NORM_CHARMAP_H_
+#define _NORM_CHARMAP_H_
+
+/* norm_charmap.c */
+const char *norm_charmap(const char *name);
+
+#endif