Mail Archives: djgpp/1994/11/08/19:41:15
In the copy I have of coff2exe, I noticed a problem:
***************
*** 126,132 ****
int main(int argc, char **argv)
{
int i;
! if (argc > 2 && strcmp(argv[1], "-h") == 0)
{
fprintf(stderr, "coff2exe [-g] [-s stub.exe] program [...]\n");
return 0;
--- 130,136 ----
int main(int argc, char **argv)
{
int i;
! if (argc > 1 && strcmp(argv[1], "-h") == 0)
{
fprintf(stderr, "coff2exe [-g] [-s stub.exe] program [...]\n");
return 0;
What exactly is stub?
I understand we can use go32.exe as a stub (but have a bigger
What does the -g option do?
Where is this documented?
marty Member of the League of Programming Freedom
leisner AT sdsp DOT mc DOT xerox DOT com
Any sufficiently advanced technology is indistinquishable from magic
Arthur C. Clarke, The Lost Worlds of 2001
- Raw text -