diff options
-rw-r--r-- | include/stddef.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/stddef.h b/include/stddef.h index 8a0ce5d..e3b98e5 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -24,9 +24,10 @@ /** * `NULL` is a zero-values constant, conventionally * a `void`-pointer (it is specified this way in - * POSIX, it does not really matter and ISO C does - * not specify it this way), use to indicate that - * a pointer does not point to anything. + * POSIX, it does not really matter as long as it has + * the same width and ISO C does not specify it this + * way), use to indicate that a pointer does not point + * to anything. */ #define NULL ((void*)0) |