Xmalloc Function

Hey. xmalloc() is my own function. Change it to malloc()

Posted by Maj.Bitch (206-57-106-88.nas-2.roc.frontiernet.net) on September 30, 1999 at 18:07:04:


//==================================================
void *xmalloc(ulong size) {
void *mem;
  mem = malloc(size);
  if (!mem) exit(1);
  return mem;
}