aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Common/Attributes.h
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-01-08 11:47:20 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-01-08 11:47:20 +0000
commitd625bb9c89f42ac7890d8d3ce80278391e28e9e7 (patch)
tree059fabcc52c5b6fae0d49e7a59795261fcc7bdcc /LUFA/Common/Attributes.h
parent306cc375ec4287f585e46cd43a01bc6b3211612c (diff)
Minor documentation improvements.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1626 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Common/Attributes.h')
-rw-r--r--LUFA/Common/Attributes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h
index 07852813..67a3166b 100644
--- a/LUFA/Common/Attributes.h
+++ b/LUFA/Common/Attributes.h
@@ -73,9 +73,9 @@
*/
#define ATTR_WARN_UNUSED_RESULT __attribute__ ((warn_unused_result))
- /** Indicates that the specified parameters of the function are pointers which should never be NULL.
+ /** Indicates that the specified parameters of the function are pointers which should never be \c NULL.
* When applied as a 1-based comma separated list the compiler will emit a warning if the specified
- * parameters are known at compiler time to be NULL at the point of calling the function.
+ * parameters are known at compiler time to be \c NULL at the point of calling the function.
*/
#define ATTR_NON_NULL_PTR_ARG(...) __attribute__ ((nonnull (__VA_ARGS__)))