aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/slibc-alloc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/slibc-alloc.h b/include/slibc-alloc.h
index d493197..de99727 100644
--- a/include/slibc-alloc.h
+++ b/include/slibc-alloc.h
@@ -292,8 +292,8 @@ void* naive_extalloc(void*, size_t) /* sic! we limit ourself to ASCII */
/**
* Allocates, deallocates, or reallocates memory without
- * bookkeeping. The created allocation may not be inspecifed,
- * deallocated or reallocated with any other function than
+ * bookkeeping. The created allocation may not be inspected,
+ * deallocated, or reallocated with any other function than
* this function.
*
* If `new_size` is zero and `ptr` is `NULL`,
@@ -323,11 +323,11 @@ void* naive_extalloc(void*, size_t) /* sic! we limit ourself to ASCII */
* entire allocation will be cleared.
*
* @param ptr The old pointer, `NULL` if a new shall be created.
- * @param ptrshift Pointer that is used to keep track of the pointers
+ * @param ptrshift Pointer that is used to keep track of the pointer's
* shift for alignment. `NULL` if the shift shall not
* be tracked. If this is the case, `falloc` cannot
* be used to reallocate or deallocate an allocation,
- * unless the pointer is unaligned (`alignment <= 0`).
+ * unless the pointer is unaligned (`alignment <= 1`).
* @param alignment The aligment of both the new and old pointer, zero
* or one if it should not be aligned.
* @param old_size The old allocation size, zero if a new shall be created.