summaryrefslogtreecommitdiffstats
path: root/libdimension/dimension/malloc.h
Commit message (Collapse)AuthorAgeFilesLines
* Modularize the libdimension codebase.Tavian Barnes2015-10-251-66/+0
|
* Add a C89 compliance test for the headers.Tavian Barnes2014-06-121-1/+1
| | | | | Technically we still require a couple things from C99 like "bool", but it works with -std=c89 under gcc.
* Add a C99 conformance test for the headers.Tavian Barnes2014-06-121-1/+1
|
* malloc: New DMNSN_MALLOC() macro to save a sizeof().Tavian Barnes2014-05-061-1/+9
|
* Fix up malloc.h documentation.Tavian Barnes2011-11-191-1/+1
|
* Update copyright years.Tavian Barnes2011-08-311-1/+1
|
* Update email address.Tavian Barnes2011-03-081-1/+1
|
* Document libdimension with Doxygen.Tavian Barnes2010-11-141-5/+31
|
* Add dmnsn_free() to match dmnsn_malloc().Tavian Barnes2010-09-261-0/+1
|
* Fix some spurious includes.Tavian Barnes2010-04-271-1/+1
|
* New dmnsn_malloc() function, and friends.Tavian Barnes2010-04-071-0/+31
I'm tired of checking for malloc failures everywhere, considering it never happens. So just bail out whenever it does. A lot of stuff is guaranteed to succeed if it returns now.