This is the change file for CWEB's CTANGLE for VAX/VMS. created: 01-FEB-1992 ST (Stephan Trebels ) > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB > change banner line to include (VAX/VMS) ? will someone make a CLD interface? (should be easy) (also modified by Don Knuth to keep version numbers uptodate) (these changes not necessary for initial bootstrapping) @x section 1 (01-FEB-1992 ST) @d banner "This is CTANGLE (Version 4.11)" @y @d banner "This is CTANGLE (VAX/VMS Version 4.11)" @z @x section 5 (01-FEB-1992 ST) #include /* definition of |@!isalpha|, |@!isdigit| and so on */ #include /* definition of |@!bool|, |@!true| and |@!false| */ #include /* definition of |@!ptrdiff_t| */ #include /* definition of |@!uint8_t| and |@!uint16_t| */ #include /* definition of |@!printf| and friends */ #include /* definition of |@!getenv| and |@!exit| */ #include /* definition of |@!strlen|, |@!strcmp| and so on */ @y #include ctype /* definition of |@!isalpha|, |@!isdigit| and so on */ /* VMS searches text libraries faster */ #include stdbool /* definition of |@!bool|, |@!true| and |@!false| */ #include stddef /* definition of |@!ptrdiff_t| */ #include stdint /* definition of |@!uint8_t| and |@!uint16_t| */ #include stdio /* definition of |@!printf| and friends */ #include stdlib /* definition of |@!getenv| and |@!exit| */ #include string /* definition of |@!strlen|, |@!strcmp| and so on */ @z