1#include <stdio.h>
2#include <stdbool.h>
3
4extern void foo();
5
6int main()
7{
8	foo();
9	return 0;
10}
11