tb0362.pp 175 B

12345678910111213
  1. {$R+}
  2. type
  3. size_t = Cardinal;
  4. function CMSG_ALIGN(len: size_t): size_t;
  5. begin
  6. CMSG_ALIGN := (len + SizeOf(size_t) - 1) and (not (SizeOf(size_t) - 1));
  7. end;
  8. begin
  9. end.