Emphasize the requirement that Python.h be included first more strongly.
Closes SF bug #837228; backporting for Python 2.3.4.
diff --git a/Doc/api/intro.tex b/Doc/api/intro.tex
index 364487d..d27a116 100644
--- a/Doc/api/intro.tex
+++ b/Doc/api/intro.tex
@@ -37,9 +37,12 @@
This implies inclusion of the following standard headers:
\code{<stdio.h>}, \code{<string.h>}, \code{<errno.h>},
\code{<limits.h>}, and \code{<stdlib.h>} (if available).
-Since Python may define some pre-processor definitions which affect
-the standard headers on some systems, you must include \file{Python.h}
-before any standard headers are included.
+
+\begin{notice}[warning]
+ Since Python may define some pre-processor definitions which affect
+ the standard headers on some systems, you \emph{must} include
+ \file{Python.h} before any standard headers are included.
+\end{notice}
All user visible names defined by Python.h (except those defined by
the included standard headers) have one of the prefixes \samp{Py} or