AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV.
+2000-11-10 Pavel Roskin <proski@gnu.org>
+
+ * doc/autoconf.texi (Particular Structures): Fix examples for
+ AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV.
+
2000-11-10 Pavel Roskin <proski@gnu.org>
* doc/autoconf.texi (Limitations of Usual Tools): Don't use
the future. This macro is obsoleted, and should be replaced by
@example
-AC_CHECK_MEMBERS((struct stat.st_blksize))
+@group
+AC_CHECK_MEMBERS([struct stat.st_blksize],,,
+[#include <sys/types.h>
+#include <sys/stat.h>])
+@end group
@end example
@end defmac
This macro is obsoleted, and should be replaced by
@example
-AC_CHECK_MEMBERS((struct stat.st_rdev))
+@group
+AC_CHECK_MEMBERS([struct stat.st_rdev],,,
+[#include <sys/types.h>
+#include <sys/stat.h>])
+@end group
@end example
@end defmac