appstub.nx.c 335 B

123456789101112131415161718192021222324
  1. #include <brl.mod/blitz.mod/blitz.h>
  2. #include <signal.h>
  3. #include <unistd.h>
  4. #include <switch.h>
  5. int __bb_brl_appstub_appstub();
  6. int main( int argc,char *argv[] ){
  7. socketInitializeDefault();
  8. nxlinkStdio();
  9. signal( SIGPIPE,SIG_IGN );
  10. bbStartup( argc,argv,0,0 );
  11. __bb_brl_appstub_appstub();
  12. socketExit();
  13. return 0;
  14. }