diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-07 14:48:33 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-07 14:48:33 +0000 |
commit | 50e5924e434c3c521c2b3949871535e2e03b8a2d (patch) | |
tree | 3eae34dfff650a086d267e306098d83c904ea6f9 /clang | |
parent | 90ccd44e944eb18f37d7e74e6fd8e2ddce8e0f14 (diff) | |
download | bcm5719-llvm-50e5924e434c3c521c2b3949871535e2e03b8a2d.tar.gz bcm5719-llvm-50e5924e434c3c521c2b3949871535e2e03b8a2d.zip |
Documentation: fix typo: stdard -> stdarg
llvm-svn: 174613
Diffstat (limited to 'clang')
-rw-r--r-- | clang/docs/FAQ.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/FAQ.rst b/clang/docs/FAQ.rst index 28d4362f8ae..4c4f8a87e3b 100644 --- a/clang/docs/FAQ.rst +++ b/clang/docs/FAQ.rst @@ -51,10 +51,10 @@ driver and add the option you need. Alternatively, you can run ``clang -Xclang <option> ...`` to force the driver pass ``<option>`` to ``clang -cc1``. -I get errors about some headers being missing (``stddef.h``, ``stdard.h``) +I get errors about some headers being missing (``stddef.h``, ``stdarg.h``) -------------------------------------------------------------------------- -Some header files (``stddef.h``, ``stdard.h``, and others) are shipped with +Some header files (``stddef.h``, ``stdarg.h``, and others) are shipped with Clang --- these are called builtin includes. Clang searches for them in a directory relative to the location of the ``clang`` binary. If you moved the ``clang`` binary, you need to move the builtin headers, too. |