summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2016-06-08 13:20:35 +0100
committerdanh-arm <dan.handley@arm.com>2016-06-08 13:20:35 +0100
commitadb1ddf86ffa95a7b4f46b0579e5d4cb5a9f186d (patch)
tree63edfeb3100f436de76ee8ff10309115ef7da23e /docs
parente4f51eee91187e980f5e0e436c65f325fc35c94b (diff)
parent754d78b1b331b07456c6ea439e401402a186c626 (diff)
Merge pull request #639 from danh-arm/dh/import-libfdt
Import libfdt v1.4.1 and related changes
Diffstat (limited to 'docs')
-rw-r--r--docs/porting-guide.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/porting-guide.md b/docs/porting-guide.md
index 8947defb..8b72e758 100644
--- a/docs/porting-guide.md
+++ b/docs/porting-guide.md
@@ -2035,12 +2035,12 @@ library only contains those C library definitions required by the local
implementation. If more functionality is required, the needed library functions
will need to be added to the local implementation.
-Versions of [FreeBSD] headers can be found in `include/stdlib`. Some of these
-headers have been cut down in order to simplify the implementation. In order to
-minimize changes to the header files, the [FreeBSD] layout has been maintained.
-The generic C library definitions can be found in `include/stdlib` with more
-system and machine specific declarations in `include/stdlib/sys` and
-`include/stdlib/machine`.
+Versions of [FreeBSD] headers can be found in `include/lib/stdlib`. Some of
+these headers have been cut down in order to simplify the implementation. In
+order to minimize changes to the header files, the [FreeBSD] layout has been
+maintained. The generic C library definitions can be found in
+`include/lib/stdlib` with more system and machine specific declarations in
+`include/lib/stdlib/sys` and `include/lib/stdlib/machine`.
The local C library implementations can be found in `lib/stdlib`. In order to
extend the C library these files may need to be modified. It is recommended to