xref: /openbsd-src/regress/libexec/ld.so/constructor/prog2/prog2.C (revision d2ec4ff77a601039ad673a98b73a58a010862e2e)
1 /*
2  * Public Domain 2003 Dale Rahn
3  *
4  * $OpenBSD: prog2.C,v 1.2 2016/09/27 06:52:50 kettenis Exp $
5  */
6 #include <iostream>
7 #include "ab.h"
8 
9 using namespace std;
10 
11 BB BBmain("main");
12 
13 int a;
14 int
main()15 main()
16 {
17 	cout << "main\n";
18 	return 0;
19 }
20