11 Feb 2014: changed  double precision
             to       real(16)
             everywhere.

   In mi11sys.f, e-32 is near enough for eps:
      eps    = 1d-32   !double = 2.0d+0**(-52)   quad = ?
      nwordr = 4
      nwordi = 4
      nwordh = 4

   Note that "integer" declarations are assumed to be integer(4).
   Typically a compiler flag -i8 could make them all integer(8),
   but then the above lines would need to be
      nwordr = 4
      nwordi = 2
      nwordh = 2


12 Feb 2014: To fix alignment, changed
      common    /m3mps3/ aijtol,bstruc(2),mlst,mer
     $                   aijmin,aijmax,na0,line,ier(20)
   to
      common    /m3mps3/ aijtol,bstruc(2),
     $                   aijmin,aijmax,na0,line,ier(20),mlst,mer
   in several files.  (Should have been that way already.)

