xref: /openbsd-src/regress/libexec/ld.so/constructor/prog2/prog2.C (revision 99fd087599a8791921855f21bd7e36130f39aadc)
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
15 main()
16 {
17 	cout << "main\n";
18 	return 0;
19 }
20