Description: fix some GCC warnings.
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
Last-Update: 2015-03-03
Index: ed2k-hash-0.3.3+deb2/ed2k_hash/options.c
===================================================================
--- ed2k-hash-0.3.3+deb2.orig/ed2k_hash/options.c
+++ ed2k-hash-0.3.3+deb2/ed2k_hash/options.c
@@ -22,6 +22,9 @@
 #include "options.h"
 #include "ui.h"
 
+// [FIX] options.c:63:6: warning: incompatible implicit declaration of built-in function ‘strlen’
+#include <string.h>
+
 int			option_htmllink = 0;	/* wrap html link around ed2k-link */
 int			option_htmlfull = 0;	/* print path component as well in html link */
 int			option_verbose = 0;		/* be verbose */
Index: ed2k-hash-0.3.3+deb2/ed2k_hash/cl_ui.c
===================================================================
--- ed2k-hash-0.3.3+deb2.orig/ed2k_hash/cl_ui.c
+++ ed2k-hash-0.3.3+deb2/ed2k_hash/cl_ui.c
@@ -25,6 +25,9 @@
 #include "options.h"
 #include "processfile.h"
 
+// [FIX] cl_ui.c:97:21: warning: incompatible implicit declaration of built-in function ‘strlen’
+#include <string.h>
+
 /* ui_init
  *
  */
