home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / utility-src / ispell / main.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-06  |  249 b   |  18 lines  |  [TEXT/KAHL]

  1. // This is to make the segment with main have as much room as possible for
  2. // the jump table.
  3.  
  4. #include <MacHeaders>
  5.  
  6. main(int argc,char **argv)
  7. {
  8.     return main1(argc,argv);
  9. }
  10.  
  11. trap(char *s)
  12. {
  13.     char t[256];
  14.     strcpy(t,s);
  15.     CtoPstr(t);
  16.     DebugStr(t);
  17. }
  18.