* tv_sec field of timeval is time_t (just for form, the actual type

is the same as clong which was the previous type)

git-svn-id: trunk@6713 -
This commit is contained in:
Jonas Maebe 2007-03-04 18:46:50 +00:00
parent ded3e530e3
commit 37487d682e

View File

@ -114,7 +114,7 @@ Type
pSockLen = ^socklen_t;
timeval = packed record
tv_sec,
tv_sec:time_t;
tv_usec:clong;
end;
ptimeval = ^timeval;