* removed "packed" from a few OS interface records

git-svn-id: trunk@20658 -
This commit is contained in:
Jonas Maebe 2012-03-29 20:32:42 +00:00
parent a2de97f932
commit 431e494548

View File

@ -145,14 +145,14 @@ Type
TSockLen = socklen_t;
pSockLen = ^socklen_t;
timeval = packed record
timeval = record
tv_sec,
tv_usec:clong;
end;
ptimeval = ^timeval;
TTimeVal = timeval;
timespec = packed record
timespec = record
tv_sec : time_t;
tv_nsec : clong;
end;