Skip to content

Commit b970fb2

Browse files
committed
ANSI -> ISO when applicable.
1 parent 3ac724e commit b970fb2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

intro.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@
666666
\begin{itemize}
667667
\item The standard C language compiler is \texttt{c99}, required by the
668668
specification. Be careful as the default mode for \texttt{gcc} does not
669-
conform to any of the ANSI/ISO C standards. You need to check the manual page
669+
conform to any of the ISO C standards. You need to check the manual page
670670
for your version, look for the option \texttt{-std=} to see what is the default.
671671
For example, for version 4.2.1, the default is \texttt{-std=gnu89}, for version
672672
7.2, it is \texttt{-std=gnu11}.
@@ -1725,7 +1725,7 @@
17251725
\pdfbookmark[1]{standard header files}{stdhdrs}
17261726

17271727
\begin{slide}
1728-
\sltitle{Standard header files (ANSI~C)}
1728+
\sltitle{Standard header files (ISO~C)}
17291729
\renewcommand{\arraystretch}{1}
17301730
\begin{tabular}{l@{\hspace{3ex}\dots\hspace{3ex}}l}
17311731
\texttt{stdlib.h} & basic macros and functions\\
@@ -1748,9 +1748,9 @@
17481748
(\emph{forward declaration}) of functions, variables and macro definitions.
17491749
From the preprocessor's point of view, this is a simple file in the C language.
17501750
\item \emsl{These header files are not specific to UNIX. They are part of
1751-
the ANSI~C standard, that is included in POSIX.1 (page \pageref{C_LANGUAGE})
1752-
It is important to realize that every system that supports
1753-
ANSI~C has to have these files, regardless of whether it supports POSIX.1.}
1751+
the ISO~C standard, that is included in POSIX.1 (page \pageref{C_LANGUAGE})
1752+
It is important to realize that every system that supports ISO~C has to have
1753+
these files, regardless of whether it supports POSIX.1.}
17541754
\item The appropriate header file for given function can be looked up using the
17551755
function's man page, e.g. this is the beginning of \texttt{memcpy} man page
17561756
on Solaris:

0 commit comments

Comments
 (0)