From 250a082e4600d13cd04050b5a88bf1217a1cd76c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 29 Jan 2015 06:23:41 +0100 Subject: [PATCH] Fix travis --- test/cfg/std.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/cfg/std.c b/test/cfg/std.c index f8c41bd3a..ca2c7d9fe 100644 --- a/test/cfg/std.c +++ b/test/cfg/std.c @@ -9,6 +9,7 @@ #include #include +#include // frexp void strcpy_ok(char *a, char *b) { strcpy(a,b); @@ -118,5 +119,6 @@ void nullpointerMemchr3(char *p) { } void nullpointerMemcmp(char *p) { + // cppcheck-suppress nullPointer memcmp(p, 0, 123); }