summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2019-01-26 13:38:10 +0000
committerColin Watson <cjwatson@debian.org>2019-01-26 13:38:10 +0000
commit2beae0a82b4a70ddc565960840ebe53142c8746b (patch)
treebcca3218424da8e6f98045173f3842e3179369d8
parent199a6e80e7b4baa27e195f2c1120c45df9ea4e67 (diff)
Note that some C99 runtime facilities may be used
* docs/HACKING (Facilities and portability): Note that C99 runtime facilities that are provided by Gnulib are OK.
-rw-r--r--docs/HACKING3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/HACKING b/docs/HACKING
index 359a1739..b675f9f9 100644
--- a/docs/HACKING
+++ b/docs/HACKING
@@ -78,7 +78,8 @@ argument type is correct.
You may assume C89 (e.g. no need to support K&R-style function definitions),
but please do not assume C99 (e.g. do not use nested functions or //
-comments).
+comments). However, it's OK to use C99 runtime facilities that are provided
+by Gnulib, such as <stdbool.h>.
Testing