[gforth] / gforth / Attic / main.c  

gforth: gforth/Attic/main.c

Diff for /gforth/Attic/main.c between version 1.13 and 1.14

version 1.13, Mon Sep 26 20:31:14 1994 UTC version 1.14, Wed Sep 28 17:02:48 1994 UTC
Line 17 
Line 17 
 #ifdef USE_GETOPT  #ifdef USE_GETOPT
 #  include "getopt.h"  #  include "getopt.h"
 #else  #else
      extern int getopt (argc, argv, optstring);       extern int getopt (int argc, char *argv[], char *optstring);
   
      extern char *optarg;       extern char *optarg;
      extern int optind, opterr;       extern int optind, opterr;
Line 193 
Line 193 
         FILE *image_file;          FILE *image_file;
         int c, retvalue;          int c, retvalue;
   
 #if defined(i386) && defined(ALIGNMENT_CHECK)  #if defined(i386) && defined(ALIGNMENT_CHECK) && !defined(DIRECT_THREADED)
         /* turn on alignment checks on the 486.          /* turn on alignment checks on the 486.
          * on the 386 this should have no effect. */           * on the 386 this should have no effect. */
         __asm__("pushfl; popl %eax; orl $0x40000, %eax; pushl %eax; popfl;");          __asm__("pushfl; popl %eax; orl $0x40000, %eax; pushl %eax; popfl;");
Line 218 
Line 218 
             /* no-init-file, no-rc? */              /* no-init-file, no-rc? */
           };            };
   
           c = getopt_long(argc, argv, "+drfl", opts, &option_index);            c = getopt_long(argc, argv, "+mdrfl", opts, &option_index);
 #else  #else
           c = getopt(argc, argv, "imdrflp");            c = getopt(argc, argv, "imdrflp");
 #endif  #endif


Generate output suitable for use with a patch program
Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help