Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/KWIML/test/test_include_C.c
3153 views
1
/*
2
Copyright Kitware, Inc.
3
Distributed under the OSI-approved BSD 3-Clause License.
4
See accompanying file Copyright.txt for details.
5
*/
6
#include <stdio.h>
7
8
/* Test KWIML header inclusion after above system headers. */
9
#include "test.h"
10
#include "../include/kwiml/abi.h"
11
#include "../include/kwiml/int.h"
12
13
int test_include_C(void)
14
{
15
return 1;
16
}
17
18