docs/xalloc.txt: typo fix.
This commit is contained in:
parent
d1c548a722
commit
2ad92d719e
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
xalloc - safe memory allocation
|
xalloc - safe memory allocation
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
this module implements malloc and friends + some extensions.
|
This module implements malloc and friends + some extensions.
|
||||||
If `__DEBUG__` symbol is defined. The functions will provide extended
|
If `__DEBUG__` symbol is defined. The functions will provide extended
|
||||||
debug logic and kills the program (passing 0 as size to malloc for example).
|
debug logic and kills the program (passing 0 as size to malloc for example).
|
||||||
|
|
||||||
|
|
@ -9,7 +9,7 @@ The funtions will at all times kill the program if memory can't be allocated for
|
||||||
some reason, this makes the need for client-code to check for `NULL` pointers returned
|
some reason, this makes the need for client-code to check for `NULL` pointers returned
|
||||||
by these functions redundant.
|
by these functions redundant.
|
||||||
|
|
||||||
functions
|
Functions
|
||||||
~~~~~~~~~
|
~~~~~~~~~
|
||||||
|
|
||||||
`xmalloc()`::
|
`xmalloc()`::
|
||||||
|
|
|
||||||
Reference in a new issue