aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristophe Milard <christophe.milard@linaro.org>2016-01-11 10:47:05 +0100
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-01-13 14:23:12 +0300
commit072478c440c3440b0d7ca67d2c3753bcc5db38ea (patch)
tree63b4cfdc29cfbfdb1da71917235f30d6017f3da4 /doc
parenta7257df625ba17c99980e18716ed9cc22335ef50 (diff)
doc: implementers-guide: libC version
Limiting the usage of the C library to the functions defined in its C99 version. Signed-off-by: Christophe Milard <christophe.milard@linaro.org> Reviewed-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/implementers-guide/implementers-guide.adoc4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/implementers-guide/implementers-guide.adoc b/doc/implementers-guide/implementers-guide.adoc
index de0b9b1c7..eb076cf4d 100644
--- a/doc/implementers-guide/implementers-guide.adoc
+++ b/doc/implementers-guide/implementers-guide.adoc
@@ -90,7 +90,9 @@ This grouping defines tests that are expected to be executable and succeed on
any platform, though possibly with very different performances, depending on the
underlying platform.
They are written in plain C code, and may only use functions defined in the
-standard libC library (besides the ODP functions being tested, of course).
+standard libC (C99) library (besides the ODP functions being tested, of course).
+A free C99 specification can be found at
+http://www.open-std.org/JTC1/sc22/wg14/www/docs/n1256.pdf.
No other languages (like scripting) are allowed as their usage would make
assumptions on the platform capability.