summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2013-07-18 16:55:39 +0200
committerHelge Deller <deller@gmx.de>2013-07-20 21:39:19 +0200
commit645a3f402619c3fe0a69c125beb72d6fb9f53c20 (patch)
tree70bd5ab117f9520b1a41c4916d546e23dd38c997
parent3beb6a43ea16bec93b281ba9f7491e23c7aa00ac (diff)
downloadpalo-645a3f402619c3fe0a69c125beb72d6fb9f53c20.tar.gz
palo/paloio.c:64: warning: implicit declaration of function 'memcmp'
I have been carrying this patch in the Gentoo repository[1] for quite a while now. [1] http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sys-boot/palo/files/palo-1.18-include.patch?view=log Add missing include for memcmp. Signed-off-by: Jeroen Roovers <jer@gentoo.org> Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--palo/paloio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/palo/paloio.c b/palo/paloio.c
index 518c6a5..64e8e45 100644
--- a/palo/paloio.c
+++ b/palo/paloio.c
@@ -7,6 +7,7 @@
*/
#include <unistd.h>
#include <stdio.h>
+#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>