aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/short.c
blob: 2e0b96c8ab6842254d6889f5ce9ce5f18b287f7b (plain)
1
2
3
4
5
6
7
8
9
short f(short a)
{
    return a;
}

int main()
{
    return f(5);
}