summaryrefslogtreecommitdiff
path: root/doc/autoconf.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/autoconf.texi')
-rw-r--r--doc/autoconf.texi14
1 files changed, 5 insertions, 9 deletions
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index 8497f46f..d4d43317 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -3551,11 +3551,9 @@ generates standard templates just like @code{AC_DEFINE} when a
For example:
@example
-AH_TEMPLATE([CRAY_STACKSEG_END],
- [Define to one of _getb67, GETB67, getb67
- for Cray-2 and Cray-YMP systems. This
- function is required for alloca.c support
- on those systems.])
+AH_TEMPLATE([NULL_DEVICE],
+ [Name of the file to open to get
+ a null file, or a data sink.])
@end example
@noindent
@@ -3563,10 +3561,8 @@ generates the following template, with the description properly
justified.
@example
-/* Define to one of _getb67, GETB67, getb67 for Cray-2 and
- Cray-YMP systems. This function is required for alloca.c
- support on those systems. */
-#undef CRAY_STACKSEG_END
+/* Name of the file to open to get a null file, or a data sink. */
+#undef NULL_DEVICE
@end example
@end defmac