1/*
2 * Copyright 2014, NICTA
3 *
4 * This software may be distributed and modified according to the terms of
5 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
6 * See "LICENSE_BSD2.txt" for details.
7 *
8 * @TAG(NICTA_BSD)
9 */
10
11int array1[10][20] __attribute__((foo)) __attribute__((bar));
12
13void f(int pos1, int pos2, int val)
14{
15  array1[pos1][pos2] = val;
16}
17
18__attribute__((noreturn))
19int myexit(int);
20
21int myexit2(int, int) __attribute__((noreturn));
22
23