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 >
Wrap
Text File
|
1995-03-26
|
454b
|
26 lines
Changes for MAIN.C by Andreas Scherer, March 23, 1995.
@x l.3
#include "config.h"
@y
#include "andyconfig.h"
@z
@x l.45
uexit (1);
@y
uexit (error_message_issued);
@z
While developing some of my code, this caused serious problems.
I'm not sure if this is still necessary, but it doesn't hurt.
@x l.47
strcpy (buf + 1, gargv[n]);
strcat (buf + 1, " ");
@y
strcpy (buf, " ");
strcat (buf + 1, gargv[n]);
strcat (buf + 1, " ");
@z