aboutsummaryrefslogtreecommitdiffstats
path: root/appendixa/gcc-desc.xml
diff options
context:
space:
mode:
authorMark Hymers <markh@linuxfromscratch.org>2001-07-22 19:45:10 +0000
committerMark Hymers <markh@linuxfromscratch.org>2001-07-22 19:45:10 +0000
commitb822811980a5f82726cb641cbeff66be9eb6d92a (patch)
tree27c4db3c62aaea065b053e43c39b2ba44c04a05f /appendixa/gcc-desc.xml
parent46f5461af92bc70c62bbb92895032b930954d835 (diff)
XML changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@827 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/gcc-desc.xml')
-rw-r--r--appendixa/gcc-desc.xml24
1 files changed, 8 insertions, 16 deletions
diff --git a/appendixa/gcc-desc.xml b/appendixa/gcc-desc.xml
index f2223a1e2..8b112c12c 100644
--- a/appendixa/gcc-desc.xml
+++ b/appendixa/gcc-desc.xml
@@ -1,10 +1,8 @@
<sect2>
<title>Contents</title>
-<para>
-The GCC package contains compilers, preprocessors and the GNU C++
-Library.
-</para>
+<para>The GCC package contains compilers, preprocessors and the GNU C++
+Library.</para>
</sect2>
@@ -12,38 +10,32 @@ Library.
<sect3><title>Compiler</title>
-<para>
-A compiler translates source code in text format to a format
+<para>A compiler translates source code in text format to a format
that a computer understands. After a source code file is compiled into
an object file, a linker will create an executable file from one or more
-of these compiler generated object files.
-</para>
+of these compiler generated object files.</para>
</sect3>
<sect3><title>Preprocessor</title>
-<para>
-A preprocessor pre-processes a source file, such as including
+<para>A preprocessor pre-processes a source file, such as including
the contents of header files into the source file. It's a good idea to
not
do this manually to save a lot of time. Someone just inserts a line
like #include &lt;filename&gt;. The preprocessor inserts the
contents of that file into the source file. That's one of the things a
-preprocessor does.
-</para>
+preprocessor does.</para>
</sect3>
<sect3><title>C++ Library</title>
-<para>
-The C++ library is used by C++ programs. The C++ library contains
+<para>The C++ library is used by C++ programs. The C++ library contains
functions that are frequently used in C++ programs. This way the
programmer doesn't have to write certain functions (such as writing a
string of text to the screen) from scratch every time he creates a
-program.
-</para>
+program.</para>
</sect3>