summaryrefslogtreecommitdiff
path: root/tests/debug.c
blob: 95ad57927cad78ae773bbfe6dcd35b9efe1444c4 (plain)
1
2
3
4
5
6
7
void __open_too_many_args(void);
void __open_missing_mode(void);

int open () {
  __open_too_many_args ();
  return 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback