stack-fcall.c revision b0764206921fcbbe3adb66606ed98962df414c1a
1int f0(int i);
2
3int main(int argc, char** argv)
4{
5	f0(argc);
6	return 0;
7}
8