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