summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-09-21 16:35:45 +0200
committerwm4 <wm4@nowhere>2019-09-21 16:35:45 +0200
commitdc7bd2ca29633a818da79088f13d2da1fe58c673 (patch)
tree16d70a914a1fa4b228aa3f05b87e39d9bbf294e2 /DOCS
parent511a73c5ce80bd6ea2df1b6af028f194711eb3ce (diff)
downloadmpv-dc7bd2ca29633a818da79088f13d2da1fe58c673.tar.bz2
mpv-dc7bd2ca29633a818da79088f13d2da1fe58c673.tar.xz
DOCS/contribute.md: expand on recommended C99 usage
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/contribute.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/DOCS/contribute.md b/DOCS/contribute.md
index 5f514b06d6..7afce3be56 100644
--- a/DOCS/contribute.md
+++ b/DOCS/contribute.md
@@ -152,7 +152,7 @@ General coding
--------------
- Use C99. Also freely make use of C99 features if it's appropriate, such as
- stdbool.h.
+ stdbool.h. (Except VLA and complex number types.)
- Don't use GNU-only features. In some cases they may be warranted, if they
are optional (such as attributes enabling printf-like format string checks).
But in general, standard C99 should be used.