Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/build/feature/test-libcheck.c
170891 views
1
// SPDX-License-Identifier: GPL-2.0
2
#include <check.h>
3
4
int main(void)
5
{
6
Suite *s = suite_create("test");
7
return s == 0;
8
}
9
10