Ticket #2470: bundle.cpp

File bundle.cpp, 220 bytes (added by Daniel Fenner <dfenner@…>, 14 years ago)
Line 
1#include <Carbon/Carbon.h>
2#include <boost/thread.hpp>
3
4void donothing() {}
5
6extern "C" __attribute__ ((visibility("default"))) pascal int main()
7{
8 boost::thread my_thread(&donothing);
9 my_thread.join();
10
11 return 0;
12}
13