+2001-08-28 Kevin Ryde <user42@zip.com.au>
+
+ * doc/autoconf.texi (Function Portability): Mention C right shifts.
+
2001-08-27 Tim Van Holder <tim.van.holder@pandora.be>
* lib/autotest/general.m4: Reword some messages.
on DOS it could even lead to file system corruption, as the file might end
up being written to after the OS has removed it.
+@item Signed @code{>>}
+Normally the C @code{>>} right shift of a signed type replicates the
+high bit, giving a so-called ``arithmetic'' shift. But care should be
+taken since the ISO C standard doesn't require that behaviour. On those
+few processors without a native arithmetic shift (for instance Cray
+vector systems) zero bits may be shifted in, the same as a shift of an
+unsigned type.
@end table