summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Opasiak <k.opasiak@samsung.com>2015-02-12 14:11:37 +0100
committerAndreas Schneider <asn@cryptomilk.org>2015-02-12 19:07:57 +0100
commitdc6289c4ac8790d79f9ac3a673d227e471041cca (patch)
treeba78e4768b4a66ca5b90db5c9e68c58b4b3b66de
parentd0ef24c83a67a07f0bba34ce46371e704d1c0654 (diff)
downloadcmocka-dc6289c4ac8790d79f9ac3a673d227e471041cca.zip
cmocka-dc6289c4ac8790d79f9ac3a673d227e471041cca.tar.gz
cmocka-dc6289c4ac8790d79f9ac3a673d227e471041cca.tar.bz2
cmocka: Surround include info with code endcode
Doxygen makes list of includes hard to read when it is not explicitly marked as code. Surround it with code marks to improve readability. Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--include/cmocka.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/cmocka.h b/include/cmocka.h
index 2980055..154b2a6 100644
--- a/include/cmocka.h
+++ b/include/cmocka.h
@@ -40,10 +40,11 @@ int __stdcall IsDebuggerPresent();
*
* These headers or their equivalents should be included prior to including
* this header file.
- *
+ * @code
* #include <stdarg.h>
* #include <stddef.h>
* #include <setjmp.h>
+ * @endcode
*
* This allows test applications to use custom definitions of C standard
* library functions and types.