aboutsummaryrefslogtreecommitdiffstats
path: root/include/stddef.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-20 02:12:30 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-20 02:12:30 +0100
commit5a98619165d29a802c099b7ee8b8e8434992e160 (patch)
tree2827be2c2293e92cde8d87b0e091ba4b7b726ca0 /include/stddef.h
parentmore etymology (diff)
downloadslibc-5a98619165d29a802c099b7ee8b8e8434992e160.tar.gz
slibc-5a98619165d29a802c099b7ee8b8e8434992e160.tar.bz2
slibc-5a98619165d29a802c099b7ee8b8e8434992e160.tar.xz
more etymology
Signed-off-by: Mattias Andrée <maandree@operamail.com>
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.