home *** CD-ROM | disk | FTP | other *** search
/ Dream 45 / Amiga_Dream_45.iso / Amiga / Magazine / Dossier-LaTeX / AmiWeb2C.lha / source / web2c-6.1 / web2c / lib / main.ch < prev    next >
Text File  |  1995-03-26  |  454b  |  26 lines

  1. Changes for MAIN.C by Andreas Scherer, March 23, 1995.
  2.  
  3. @x l.3
  4. #include "config.h"
  5. @y
  6. #include "andyconfig.h"
  7. @z
  8.  
  9. @x l.45
  10.       uexit (1);
  11. @y
  12.       uexit (error_message_issued);
  13. @z
  14.  
  15. While developing some of my code, this caused serious problems.
  16. I'm not sure if this is still necessary, but it doesn't hurt.
  17.  
  18. @x l.47
  19.   strcpy (buf + 1, gargv[n]);
  20.   strcat (buf + 1, " ");
  21. @y
  22.   strcpy (buf, " ");
  23.   strcat (buf + 1, gargv[n]);
  24.   strcat (buf + 1, " ");
  25. @z
  26.