1/*
2 * Copyright 2016, NICTA
3 *
4 * This software may be distributed and modified according to the terms of
5 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
6 * See "LICENSE_GPLv2.txt" for details.
7 *
8 * @TAG(NICTA_GPL)
9 */
10
11#include "../../cogent/tests/cogent.h" /* FIXME: Change to the proper path */
12
13#ifndef PASS_SIMPLE_TUPLE_H__
14#define PASS_SIMPLE_TUPLE_H__
15
16enum t6 {
17    FUN_ENUM_foo
18};
19typedef enum t6 t6;
20struct t3 {
21    u32 p1;
22    u32 p2;
23};
24typedef struct t3 t3;
25t3 dispatch_t6(t6, u32);
26t3 foo(u32);
27typedef u32 foo_arg;
28typedef t3 foo_ret;
29#endif
30
31
32