File: test3.c

package info (click to toggle)
tom 1.1.1-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 6,340 kB
  • ctags: 2,244
  • sloc: objc: 27,863; ansic: 9,804; sh: 7,411; yacc: 3,377; lex: 966; asm: 208; makefile: 62; cpp: 10
file content (6 lines) | stat: -rw-r--r-- 129 bytes parent folder | download
1
2
3
4
5
6
int printf (char *fmt, ...);

void foo (int a, double d)
{
  printf ("blurb", a, d, a + 1, d + 1, a + 2, d + 2, a + 3, d + 3);
}