Next: Time Up: Utility Routines Previous: Utility Routines

Storage: xMalloc and xFree

These are just like Unix malloc and free functions. The xMalloc function will cause an x-kernel abort if no storage is available; therefore, it has no error return value.

char *xMalloc(int size)

int xFree(char * buf)


Tue Nov 29 16:28:56 MST 1994