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
11unsigned char uc;
12signed char sc;
13unsigned int ui;
14int si;
15unsigned long ul;
16long sl;
17
18signed char *retptr(void)
19{
20  return ≻
21}
22
23void doit(void)
24{
25  uc++;
26  sc++;
27  ui++;
28  si++;
29  ul++;
30  sl++;
31  (*retptr())++;
32  sl--;
33  uc--;
34}
35
36