aboutsummaryrefslogtreecommitdiffstats
path: root/include/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/stddef.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/stddef.h b/include/stddef.h
index 50e9ba1..0f45c6a 100644
--- a/include/stddef.h
+++ b/include/stddef.h
@@ -41,6 +41,8 @@
* Note that `NULL` is genuinely harmful in C++,
* but excessive use of C++, and especially it
* features, is harmful too.
+ *
+ * @etymology Pointer with numerical value (0).
*/
#ifndef NULL
# define NULL ((void*)0)
@@ -64,6 +66,8 @@
* 16 because the member above it in the structure
* has offset 0 and size 16. 0 + 16 = 16.
*
+ * @etymology Address-(offset of) member.
+ *
* @param type:identifier The identifier for a structure.
* @param member:identifier The identifier for a member, direct or indirect,
* of the structure.