home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / cdrom / cd32goodies / debug.c < prev    next >
C/C++ Source or Header  |  1977-12-31  |  92b  |  11 lines

  1. /*
  2.     call the debugger
  3. */
  4.  
  5. #include <proto/exec.h>
  6.  
  7. int main (void)
  8. {
  9.     Debug(0);
  10.     return 0;
  11. }