Oct. 12, 2012
4:24 p.m.
For this bit in date.c: - found = select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout); + found = select(FD_SETSIZE, &ready, 0, 0, &tout); You probably want to use NULL, not a bare 0 for the 3rd and 4th arguments. Also, I believe irealloc() is still needed if you are targetting C89 as the behavior where realloc(NULL, n) being equivalent to malloc(n) was standardized in C99, not C89. - todd