Fix travis

This commit is contained in:
Daniel Marjamäki 2015-01-29 06:23:41 +01:00
parent 0949baac9b
commit 250a082e46
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#include <string.h>
#include <stdio.h>
#include <tgmath.h> // 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);
}