home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / aaa / anon / notn < prev   
Encoding:
Text File  |  1986-11-30  |  279 b   |  9 lines

  1. # Main preprocessing, some more-or-less machine-independent odds and ends
  2. # (two-byte constants (note byte order known)).
  3. /^=/ {                # Two-byte constant, low byte first.
  4.     print "/" substr($0, 2)
  5.     print "\\" substr($0, 2)
  6.     next
  7. }
  8. /./ { print }            # Something else, leave untouched.
  9.