Commit e7f18c22 authored by Kees Cook's avatar Kees Cook

stddef: Fix kerndoc for sizeof_field() and offsetofend()

Adjust the comment styles so these are correctly identified as valid
kern-doc.
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
parent 0e17ad87
...@@ -20,7 +20,7 @@ enum { ...@@ -20,7 +20,7 @@ enum {
#endif #endif
/** /**
* sizeof_field(TYPE, MEMBER) * sizeof_field() - Report the size of a struct field in bytes
* *
* @TYPE: The structure containing the field of interest * @TYPE: The structure containing the field of interest
* @MEMBER: The field to return the size of * @MEMBER: The field to return the size of
...@@ -28,7 +28,7 @@ enum { ...@@ -28,7 +28,7 @@ enum {
#define sizeof_field(TYPE, MEMBER) sizeof((((TYPE *)0)->MEMBER)) #define sizeof_field(TYPE, MEMBER) sizeof((((TYPE *)0)->MEMBER))
/** /**
* offsetofend(TYPE, MEMBER) * offsetofend() - Report the offset of a struct field within the struct
* *
* @TYPE: The type of the structure * @TYPE: The type of the structure
* @MEMBER: The member within the structure to get the end offset of * @MEMBER: The member within the structure to get the end offset of
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment