errno.inc 214 B

12345678910111213141516
  1. { Translation of macro }
  2. {$ifndef LIBC_OLDERRNO}
  3. function errno : error_t;
  4. begin
  5. Result:=__errno_location()^;
  6. end;
  7. procedure seterrno (value : error_t);
  8. begin
  9. __errno_location()^:=Value;
  10. end;
  11. {$endif}