blob: b4eb2932fc8c75328c43f08110ade316c42073fc [file] [log] [blame]
/*
* Copyright (c) 2019, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "CppUTest/TestHarness.h"
extern "C" {
#include "lib/libc/string.h"
}
TEST_GROUP(memcmp) {
};
TEST(memcmp, empty) {
LONGS_EQUAL(0, memcmp(NULL, NULL, 0))
}