test_include_C.c 353 B

12345678910111213141516
  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. /* Test KWIML header inclusion after above system headers. */
  8. #include "test.h"
  9. #include "../include/kwiml/abi.h"
  10. #include "../include/kwiml/int.h"
  11. int test_include_C(void)
  12. {
  13. return 1;
  14. }