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        sverrehu@online.no
        Kurvn. 30               http://home.sol.no/~sverrehu/
        N-0495 Oslo
        Norway

You can use and copy this for _free_, but I would be very happy if you
send me an E-mail and tell me that you use it. 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!

