| ftime() function doesn't seems to be detected - but
sys/timeb.h is included.. strange!
Can you try this to find the .h: ?
for i in `find /usr/include/ -name "*.h" 2>/dev/null`;
do if grep -E '^extern int ftime' "$i">/dev/null; then
echo "ok: $i"; fi; done
If nothing is being found, I'll assume that ftime() is
not supported on FreeBSD, but thi sis strange (but
this function should be BSD 4.3 standard)
| |