Can someone tell me what this means????? 
Catastrophe in malloc: sbrk\(\)error 1b
IOT/Abort trap \(coredump\)
Thanks!
Can someone tell me what this means????? 
Catastrophe in malloc: sbrk\(\)error 1b
IOT/Abort trap \(coredump\)
Thanks!
the program seems to have sent a request to kernel for an increment in it's data segment, but kernel refused to do it.
check out the errno, i think it's probably set to ENOMEM. you can use fputs(strerror(errno), stderr); for a text version of the last error.