xalloc - memory allocation with error checking
==============================================

Description
-----------

This simple library contains wrappers for memory allocating C
functions.  The names of the functions match the original ones with a
prepended `x', like in xmalloc.

If no more memory is available when any of these functions are called,
the program is aborted with an error message.  The program abortion
may be overridden by setting a user defined error handler, and
installing it using xaSetErrFunc.  If the user defined error handler
does not abort the program, the functions return NULL to indicate
failure.


Author
------

The program is written by

        Sverre H. Huseby        shh@thathost.com
        Lofthusvn. 11 B         http://shh.thathost.com/
        N-0587 Oslo
        Norway


License
-------

This program is released under the Artistic License:

  http://www.opensource.org/licenses/artistic-license.html

Comments (even as simple as "I use your program") are very welcome.
If you insist on paying something, please donate some money to an
organization that strives to make the world a better place for
everyone.

I don't like bugs, so please help me removing them by reporting
whatever you find!

