summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2009-04-25 04:21:30 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-05-12 09:31:26 +0200
commitaa07f62f10d3dd32c462d585cc88854d2122703a (patch)
tree50dadf66361ea3d572e0f3d2b2d76638f77d8d39
parent2e51c75938f18b8d637195400827f23c5ac996a1 (diff)
downloadrsyslog-aa07f62f10d3dd32c462d585cc88854d2122703a.tar.gz
rsyslog-aa07f62f10d3dd32c462d585cc88854d2122703a.tar.xz
rsyslog-aa07f62f10d3dd32c462d585cc88854d2122703a.zip
Fix compiler warnings
Include <string.h> for memcpy and strlen.
-rw-r--r--runtime/vm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/vm.c b/runtime/vm.c
index bc6c3dd2..f1fbcc2e 100644
--- a/runtime/vm.c
+++ b/runtime/vm.c
@@ -25,6 +25,7 @@
#include "config.h"
#include <stdlib.h>
+#include <string.h>
#include <assert.h>
#include "rsyslog.h"