This is the change file for CWEB's CWEAVE for VAX/VMS. created: 1991 JM (John Mulhollen, Science Applications International Corporation) modified: 01-FEB-1992 ST (Stephan Trebels ) > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB > change banner line to include (VAX/VMS) > allow $ in identifiers (*necessary* for VAX/VMS) ? will someone eventally make a CLD interface? (should be easy) (also modified by Don Knuth to keep version numbers uptodate) @x section 1 (01-FEB-1992 ST) @d banner "This is CWEAVE (Version 4.11)" @y @d banner "This is CWEAVE (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