aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-09-21 01:19:16 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-09-21 01:19:16 -0400
commit2b8c61b37780d8acc3ce120267a7d81566323457 (patch)
tree5da366839cab1e4b486f1f9dae8682008f7a3e6a
parent8e80eb006f1fa3925e816b231b8312cac1ef37bc (diff)
downloadlibrambutan-2b8c61b37780d8acc3ce120267a7d81566323457.tar.gz
librambutan-2b8c61b37780d8acc3ce120267a7d81566323457.zip
faq: Improve atoi() FAQ.
Add reference to strtol() to show we're hip to the times. Add link to arm-gcc section on libc for further reading. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
-rw-r--r--source/faq.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/faq.rst b/source/faq.rst
index 0d26a48..6b32b48 100644
--- a/source/faq.rst
+++ b/source/faq.rst
@@ -11,13 +11,11 @@
.. _faq-atoi:
-How can I use ``atoi()``?
--------------------------
+How can I use ``atoi()``, ``strol()``, etc?
+-------------------------------------------
-The :ref:`CodeSourcery GCC compiler <arm-gcc>` used to compile your
-programs is configured to link against the `newlib
-<http://sourceware.org/newlib/>`_ C library, and allows the use of any
-of its headers.
+Just ``#include <stdlib.h>``. See :ref:`arm-gcc-libc` for more
+information on the C standard library.
.. _faq-dynamic-memory: