errnostr.inc 682 B

12345678910111213141516171819202122
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2006 by Florian Klaempfl
  4. Contains SunOS specific errors for error.pp in rtl/unix
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. const
  12. sys_errn = 128;
  13. { since we're libc-based, just just the libc version }
  14. var
  15. sys_errlist:array[0..sys_errn-1] of PAnsiChar; cvar; external;