1/*
2 * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include "test_include2.h"
8/* above defines included_fn, and included_global */
9
10int g(int m)
11{
12  return m + included_global;
13}
14
15int h(char c)
16{
17  return included_fn(2 * c);
18}
19
20int included_fn(int param)
21{
22  return param * 3;
23}
24