source: rtems-graphics-toolkit/fltk-1.3.0/rtems_main.cxx @ b0e772a

Last change on this file since b0e772a was 532c019, checked in by Alexandru-Sever Horin <alex.sever.h@…>, on 08/09/12 at 13:22:52

Added comment to rtems_main.cxx

  • Property mode set to 100644
File size: 243 bytes
Line 
1/* Added to function as a wrapper from
2 * nano-X rtems_main call and usual main entry-point
3 */
4
5extern int main(int argc, char **argv);
6
7extern "C" int rtems_main(int argc, char **argv)
8{
9  using namespace std;
10  return main(argc, argv);
11}
12
Note: See TracBrowser for help on using the repository browser.