diff options
-rw-r--r-- | src/include/inline.h | 5 | ||||
-rw-r--r-- | test/testheap.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/inline.h b/src/include/inline.h index 0daaffcaa..42775d5cb 100644 --- a/src/include/inline.h +++ b/src/include/inline.h @@ -20,6 +20,11 @@ #ifndef _INLINE_H_
#define _INLINE_H_
+/**
+ * @file inline.h
+ * @brief Kernel inlined functions.
+ */
+
/*
* Inlined functions if CH_OPTIMIZE_SPEED is enabled.
* Note: static inlined functions do not duplicate the code in every module
diff --git a/test/testheap.c b/test/testheap.c index 7c5b97918..3a684f415 100644 --- a/test/testheap.c +++ b/test/testheap.c @@ -43,7 +43,7 @@ * .
* @file testheap.c
* @brief Heap test source file
- * @file testevt.h
+ * @file testheap.h
* @brief Heap header file
*/
|