diff options
Diffstat (limited to 'include/alloc.h')
| -rw-r--r-- | include/alloc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/alloc.h b/include/alloc.h index 6374b3a..594ef67 100644 --- a/include/alloc.h +++ b/include/alloc.h @@ -21,7 +21,8 @@ /* * Returns a pointer to a new region of memory of the specified - * size, or NULL if no memory is available. + * size, or NULL if no memory is available. Requests for 0 bytes of + * memory will also return NULL. */ void *allocate(size_t); |